Files
postgres-web/pgweb/survey/admin.py
Jonathan S. Katz 2f52c4f7c4 Clean up whitespace in primary Python / HTML files
Clean up the whitespace in the primary Python / HTML files in
order to make it easier to apply changes going forward.
2017-11-29 08:21:35 -05:00

15 lines
484 B
Python

from django.contrib import admin
from models import Survey, SurveyLock, SurveyAnswer
class SurveyAdmin(admin.ModelAdmin):
list_display = ('question','posted','current',)
ordering = ('-posted',)
class SurveyAnswerAdmin(admin.ModelAdmin):
list_display = ('survey','tot1','tot2','tot3','tot4','tot5','tot6','tot7','tot8')
ordering = ('-survey__posted',)
admin.site.register(Survey, SurveyAdmin)
admin.site.register(SurveyLock)
admin.site.register(SurveyAnswer, SurveyAnswerAdmin)