| 54 | class RoutePlanAdmin(admin.ModelAdmin): |
| 55 | list_display = ('id', 'created_at', 'name') |
| 56 | list_filter = ('name',) |
| 57 | search_fields = ('name',) |
| 58 | |
| 59 | |
| 60 | @admin.register(EVInfo) |
nothing calls this directly
no outgoing calls
no test coverage detected