| 47 | @admin.register(SendToCarLocation) |
| 48 | class 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) |
| 54 | class RoutePlanAdmin(admin.ModelAdmin): |
| 55 | list_display = ('id', 'created_at', 'name') |
| 56 | list_filter = ('name',) |
nothing calls this directly
no outgoing calls
no test coverage detected