|
@@ -102,9 +102,9 @@
|
|
{% if post.edits %}
|
|
{% if post.edits %}
|
|
<span class="separator">–</span>
|
|
<span class="separator">–</span>
|
|
{% if acl.threads.can_see_changelog(user, forum, post) %}
|
|
{% if acl.threads.can_see_changelog(user, forum, post) %}
|
|
- <a href="{% url 'changelog' thread=thread.pk, slug=thread.slug, post=post.pk %}" class="post-changelog tooltip-bottom" title="{% trans %}Show changelog{% endtrans %}">{% trans count=post.edits %}One edit{% pluralize %}{{ count }} edits{% endtrans %}</a>
|
|
|
|
|
|
+ <a href="{% url 'changelog' thread=thread.pk, slug=thread.slug, post=post.pk %}" class="post-changelog tooltip-bottom" title="{% trans %}Show changelog{% endtrans %}">{% trans edits=post.edits %}One edit{% pluralize %}{{ edits }} edits{% endtrans %}</a>
|
|
{% else %}
|
|
{% else %}
|
|
- <span class="post-changelog">{% trans count=post.edits %}One edit{% pluralize %}{{ count }} edits{% endtrans %}</span>
|
|
|
|
|
|
+ <span class="post-changelog">{% trans edits=post.edits %}One edit{% pluralize %}{{ edits }} edits{% endtrans %}</span>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
@@ -187,9 +187,9 @@
|
|
{% if post.edits %}
|
|
{% if post.edits %}
|
|
<span class="separator">–</span>
|
|
<span class="separator">–</span>
|
|
{% if acl.threads.can_see_changelog(user, forum, post) %}
|
|
{% if acl.threads.can_see_changelog(user, forum, post) %}
|
|
- <a href="{% url 'private_thread_changelog' thread=thread.pk, slug=thread.slug, post=post.pk %}" class="post-changelog tooltip-bottom" title="{% trans %}Show changelog{% endtrans %}">{% trans count=post.edits %}One edit{% pluralize %}{{ count }} edits{% endtrans %}</a>
|
|
|
|
|
|
+ <a href="{% url 'private_thread_changelog' thread=thread.pk, slug=thread.slug, post=post.pk %}" class="post-changelog tooltip-bottom" title="{% trans %}Show changelog{% endtrans %}">{% trans edits=post.edits %}One edit{% pluralize %}{{ edits }} edits{% endtrans %}</a>
|
|
{% else %}
|
|
{% else %}
|
|
- <span class="post-changelog">{% trans count=post.edits %}One edit{% pluralize %}{{ count }} edits{% endtrans %}</span>
|
|
|
|
|
|
+ <span class="post-changelog">{% trans edits=post.edits %}One edit{% pluralize %}{{ edits }} edits{% endtrans %}</span>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
|
|
@@ -381,10 +381,10 @@
|
|
</div>
|
|
</div>
|
|
<div class="span3">
|
|
<div class="span3">
|
|
<div class="thread-participants">
|
|
<div class="thread-participants">
|
|
- <h3>{% trans count=participants|length -%}
|
|
|
|
|
|
+ <h3>{% trans participants=participants|length -%}
|
|
One participant
|
|
One participant
|
|
{%- pluralize -%}
|
|
{%- pluralize -%}
|
|
- {{ count }} participants
|
|
|
|
|
|
+ {{ participants }} participants
|
|
{%- endtrans %}</h3>
|
|
{%- endtrans %}</h3>
|
|
<ul class="unstyled">{% for participant in participants %}
|
|
<ul class="unstyled">{% for participant in participants %}
|
|
<li>
|
|
<li>
|