Skip to content

Commit dc0ca34

Browse files
committed
feat: apply render_buttons filter to pages detail template
1 parent 8530d51 commit dc0ca34

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/pages/templates/pages/detail.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "base.html" %}
2-
{% load static %}
2+
{% load static content_filters %}
33
{% block content %}
44
<main>
55
<div class="min-h-screen bg-contain bg-center" style="background-image: url('{% static 'img/bg-conference-at-glance.png' %}');">
@@ -10,7 +10,7 @@
1010
<article>
1111
<h1 class="text-5xl my-10 font-bold font-td_pinoy text-orange-2 hyphens-auto">{{ page.title|safe }}</h1>
1212
<div class="prose prose-lg max-w-none prose-custom">
13-
{{ page.content|safe }}
13+
{{ page.content|render_buttons }}
1414
</div>
1515
</article>
1616
</div>

0 commit comments

Comments
 (0)