Skip to content

Commit

Permalink
Added windy import/export
Browse files Browse the repository at this point in the history
  • Loading branch information
ysavary committed Mar 19, 2023
1 parent 656dc2c commit 390570a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion winds_mobi_windy/admin.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
from django.contrib import admin
from import_export.admin import ImportExportModelAdmin

from winds_mobi_windy.models import Station


@admin.register(Station)
class StationAdmin(admin.ModelAdmin):
class StationAdmin(ImportExportModelAdmin):
ordering = ("id",)
list_display = ("id",)

0 comments on commit 390570a

Please sign in to comment.