forked from DGNum/gestiojeux
c01ed7cb47
Python: - black - isort (black profile) - ruff Nix: - statix - nixfmt-rfc-style - deadnix
6 lines
171 B
Python
6 lines
171 B
Python
from django.contrib import admin
|
|
from markdownx.admin import MarkdownxModelAdmin
|
|
|
|
from .models import MarkdownPage
|
|
|
|
admin.site.register(MarkdownPage, MarkdownxModelAdmin)
|