Skip to content

Commit

Permalink
Merge pull request #132 from luftdaten-at/129-backend-change-devices-…
Browse files Browse the repository at this point in the history
…admin-table

change list display DeviceAdmin
  • Loading branch information
silvioheinze authored Jan 28, 2025
2 parents ed9df87 + 5de5f0a commit 1e02dfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/devices/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from .models import Device, DeviceStatus

class DeviceAdmin(admin.ModelAdmin):
list_display = ('id', 'device_name')
list_display = ('id', 'device_name', 'model', 'last_update')

class DeviceStatusAdmin(admin.ModelAdmin):
list_display = ('id', 'device', 'time_received')
Expand Down

0 comments on commit 1e02dfb

Please sign in to comment.