瀏覽代碼

bug fix admin panel for indicators

MrOzOn 5 年之前
父節點
當前提交
ab2e9b4569
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      apps/indicator/admin.py

+ 1 - 1
apps/indicator/admin.py

@@ -4,7 +4,7 @@ from apps.indicator.models import Indicator
 
 
 class IndicatorAdmin(admin.ModelAdmin):
-    fields = ('type', 'value1', 'value2', 'value_added', 'patient', 'last_modified', 'comments', 'observing')
+    fields = ('type', 'value1', 'value2', 'value_added', 'patient', 'comments', 'observing')
     list_display = ('id', 'type', 'value1', 'value2', 'value_added', 'patient', 'last_modified', 'comments', 'observing')
     search_fields = ('type',)
     ordering = ('-created_date',)