MCPcopy Create free account
hub / github.com/developerfromjokela/opencarwings / AlertHistoryAdmin

Class AlertHistoryAdmin

db/admin.py:49–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

47@admin.register(SendToCarLocation)
48class SendToCarLocationAdmin(admin.ModelAdmin):
49 list_display = ('id', 'lat', 'lon', 'name', 'created_at')
50 list_filter = ('name', 'created_at')
51 search_fields = ('lat', 'lon', 'name')
52
53@admin.register(RoutePlan)
54class RoutePlanAdmin(admin.ModelAdmin):
55 list_display = ('id', 'created_at', 'name')
56 list_filter = ('name',)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected