Skip to content

Commit

Permalink
Feat: FAQ 데이터를 어드민 페이지에서 관리 (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
jungmir authored and YongJun-Lee-98 committed Feb 28, 2025
1 parent b5e41dc commit a0ad3ac
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 a0ad3ac

Please sign in to comment.