mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2024-12-28 18:26:05 +00:00
6 lines
100 B
Python
6 lines
100 B
Python
|
from django.contrib import admin
|
||
|
from articles.models import Article
|
||
|
|
||
|
|
||
|
admin.site.register(Article)
|