mirror of
https://github.com/Rushilwiz/NewViewsNews.git
synced 2025-04-11 07:30:17 -04:00
6 lines
120 B
Python
6 lines
120 B
Python
from django.contrib import admin
|
|
from .models import Article
|
|
# Register your models here.
|
|
|
|
admin.site.register(Article)
|