forked from DGNum/gestiojeux
c01ed7cb47
Python: - black - isort (black profile) - ruff Nix: - statix - nixfmt-rfc-style - deadnix
15 lines
474 B
Python
15 lines
474 B
Python
from django.utils.safestring import mark_safe
|
|
from django.views.generic import DetailView
|
|
from markdownx.utils import markdownify
|
|
|
|
from .models import MarkdownPage
|
|
|
|
|
|
class MarkdownPageView(DetailView):
|
|
model = MarkdownPage
|
|
template_name = "website/markdown_page.html"
|
|
|
|
def get_context_data(self, **kwargs):
|
|
context = super().get_context_data(**kwargs)
|
|
context["markdown_body"] = mark_safe(markdownify(self.object.content))
|
|
return context
|