mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-05-14 07:42:15 +00:00
5 lines
100 B
Python
5 lines
100 B
Python
from django.contrib import admin
|
|
from articles.models import Article
|
|
|
|
|
|
admin.site.register(Article)
|