:art: ThermometerInfoAdmin

huangqimin001 2 lat temu
rodzic
commit
c9472da23c
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      thermometer/admin.py

+ 1 - 1
thermometer/admin.py

@@ -6,7 +6,7 @@ from thermometer.models import ThermometerInfo
6 6
 
7 7
 
8 8
 class ThermometerInfoAdmin(admin.ModelAdmin):
9
-    list_display = ('thermometer_id', 'user_id', 'macid', 'status', 'created_at', 'updated_at')
9
+    list_display = ('thermometer_id', 'user_id', 'macid', 'bound_at', 'status', 'created_at', 'updated_at')
10 10
 
11 11
 
12 12
 admin.site.register(ThermometerInfo, ThermometerInfoAdmin)