1
0
mirror of https://github.com/django/django.git synced 2025-02-08 00:16:31 +00:00
Claude Paroz 35c41987ec Moved LogEntry-related tests to their own test case
Thanks Tim Graham for reviewing and contributing to the patch.
Refs #21113.
2015-12-28 20:29:08 +01:00

8 lines
165 B
Python

from django.contrib import admin
from .models import Article, ArticleProxy
site = admin.AdminSite(name='admin')
site.register(Article)
site.register(ArticleProxy)