We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c014ce4 commit 12cdc3aCopy full SHA for 12cdc3a
djangoproject/templates/blog/entry_detail.html
@@ -11,8 +11,10 @@
11
{% block content %}
12
<h1>{{ object.headline|safe }}</h1>
13
14
- <span class="meta">{% blocktranslate trimmed with author=object.author pub_date=object.pub_date|date:"DATE_FORMAT" %}
15
- Posted by <strong>{{ author }}</strong> on {{ pub_date }} </span>
16
- {% endblocktranslate %}
17
- {{ object.body_html|safe }}
+ <span class="meta">
+ {% blocktranslate trimmed with author=object.author pub_date=object.pub_date|date:"DATE_FORMAT" %}
+ Posted by <strong>{{ author }}</strong> on {{ pub_date }}
+ {% endblocktranslate %}
18
+ </span>
19
+ {{ object.body_html|safe }}
20
{% endblock %}
0 commit comments