mirror of
https://github.com/bendtherules/pytry.git
synced 2026-08-18 22:03:03 +00:00
6 lines
154 B
Python
6 lines
154 B
Python
from django.contrib import admin
|
|
from polls.models import Poll, Choice
|
|
# Register your models here.
|
|
|
|
admin.site.register(Poll)
|
|
admin.site.register(Choice) |