local changes

This commit is contained in:
Robert Einsle 2017-01-27 09:37:23 +01:00
parent 6610c3b48e
commit e34d4a5a7b
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
.idea/
static/
*.sqlite3
*.py[cod]
.so

View File

@ -20,7 +20,7 @@ class TableAdmin(admin.ModelAdmin):
@admin.register(LocationData)
class LocationDataAdmin(admin.ModelAdmin):
list_display = ('location_id', 'table_no', 'tst', 'on_off',)
fields = ['location_id', 'table_no', 'tst', 'on_off',]
list_display = ('location_id', 'table_no', 'tst', 'on_off', 'processed', 'error_msg')
fields = ['location_id', 'table_no', 'tst', 'on_off', 'processed', 'error_msg']
pass