mirror of
https://github.com/Rushilwiz/HiLo.git
synced 2025-04-09 14:40:16 -04:00
8 lines
190 B
Python
Executable File
8 lines
190 B
Python
Executable File
from django.contrib import admin
|
|
from .models import Poll, Answer, Location
|
|
|
|
# Register your models here.
|
|
|
|
admin.site.register(Location)
|
|
admin.site.register(Poll)
|
|
admin.site.register(Answer) |