summaryrefslogtreecommitdiff
path: root/tests/timezones/admin.py
blob: bd6c4e10c879d035fc6929fc68119f8e476e9b92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from django.contrib import admin

from .models import Event, Timestamp


class EventAdmin(admin.ModelAdmin):
    list_display = ('dt',)

admin.site.register(Event, EventAdmin)


class TimestampAdmin(admin.ModelAdmin):
    readonly_fields = ('created', 'updated')

admin.site.register(Timestamp, TimestampAdmin)