| 40 | |
| 41 | @admin.register(LocationInfo) |
| 42 | class LocationInfoAdmin(admin.ModelAdmin): |
| 43 | list_display = ('id', 'lat', 'lon', 'home', 'last_updated') |
| 44 | list_filter = ('home', 'last_updated') |
| 45 | search_fields = ('lat', 'lon') |
| 46 | |
| 47 | @admin.register(SendToCarLocation) |
| 48 | class SendToCarLocationAdmin(admin.ModelAdmin): |
nothing calls this directly
no outgoing calls
no test coverage detected