Skip to content

Commit 12cdc3a

Browse files
committed
Fixed translation string in entry_detail.html template
1 parent c014ce4 commit 12cdc3a

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

djangoproject/templates/blog/entry_detail.html

+6-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@
1111
{% block content %}
1212
<h1>{{ object.headline|safe }}</h1>
1313

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 }}
14+
<span class="meta">
15+
{% blocktranslate trimmed with author=object.author pub_date=object.pub_date|date:"DATE_FORMAT" %}
16+
Posted by <strong>{{ author }}</strong> on {{ pub_date }}
17+
{% endblocktranslate %}
18+
</span>
19+
{{ object.body_html|safe }}
1820
{% endblock %}

0 commit comments

Comments
 (0)