Skip to content

Commit

Permalink
feat: register admin: url_type
Browse files Browse the repository at this point in the history
  • Loading branch information
dmartin4820 authored and fyliu committed Nov 12, 2024
1 parent 4d26ed6 commit 6bbd43d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/core/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
from .models import SocMajor
from .models import StackElement
from .models import StackElementType
from .models import UrlType
from .models import User


Expand Down Expand Up @@ -245,3 +246,8 @@ class CheckTypeAdmin(admin.ModelAdmin):
@admin.register(SocMajor)
class SocMajorAdmin(admin.ModelAdmin):
list_display = ("occ_code", "title")


@admin.register(UrlType)
class UrlTypeAdmin(admin.ModelAdmin):
list_display = ("name", "description")

0 comments on commit 6bbd43d

Please sign in to comment.