Skip to content

Commit

Permalink
Feat: FAQ 데이터를 어드민 페이지에서 관리 (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
jungmir authored Feb 25, 2025
1 parent 34edbb1 commit 9392a84
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/faq/admin.py
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
from django.contrib import admin

from .models import FAQ

# Register your models here.


@admin.register(FAQ)
class FAQAdmin(admin.ModelAdmin):
list_display = ("question", "answer")

0 comments on commit 9392a84

Please sign in to comment.