Skip to content

Commit

Permalink
Add EJ data as fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
code-geek committed Feb 2, 2024
1 parent 1c49ef3 commit 657b808
Show file tree
Hide file tree
Showing 3 changed files with 4,235 additions and 2 deletions.
9 changes: 8 additions & 1 deletion environmental_justice/admin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
from django.contrib import admin # noqa

# Register your models here.
from .models import EnvironmentalJusticeRow


@admin.register(EnvironmentalJusticeRow)
class EnvironmentalJusticeAdmin(admin.ModelAdmin):
"""Admin View for EnvironmentalJustice"""

list_display = ("dataset", "description")
Loading

0 comments on commit 657b808

Please sign in to comment.