aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/register/admin.py
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-10-21 17:08:24 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-10-21 17:08:35 +0100
commitecd2c19b265e3974707da0d9b8e260749dcf4a9f (patch)
treea47b8e820e98e39fca7108c1f98bc500bf0c98d9 /ctrack/register/admin.py
parent07c741c785761cfa0e9895e35ba7e1f1549ce676 (diff)
renamed a field in a model to date and look what I need! new migrations and fixed tests
Diffstat (limited to '')
-rw-r--r--ctrack/register/admin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/register/admin.py b/ctrack/register/admin.py
index 6e6aa26..a896b26 100644
--- a/ctrack/register/admin.py
+++ b/ctrack/register/admin.py
@@ -16,7 +16,7 @@ class EngagementEventTypeAdmin(admin.ModelAdmin):
class SingleDateTimeEventAdmin(admin.ModelAdmin):
model = SingleDateTimeEvent
- list_display = ("type_descriptor", "short_description", "datetime", "user", "created_date")
+ list_display = ("type_descriptor", "short_description", "date", "user", "created_date")
class CAFSingleDateEventAdmin(admin.ModelAdmin):