khana/khana/competition/admin.py

26 lines
590 B
Python

from django.contrib import admin
# Register your models here.
from .models import Competition, Point, Division, Level
class PointAdmin(admin.ModelAdmin):
model = Point
list_display = (
"gymnast",
"point_execution",
"point_difficulty",
"point_time_of_flight",
"total",
)
ordering = ("gymnast",)
# search_fields = ('longLabel', 'shortLabel')
list_filter = ("gymnast", "event", "routine_type")
admin.site.register(Competition)
admin.site.register(Point, PointAdmin)
admin.site.register(Division)
admin.site.register(Level)