Commit be6e65c5 authored by Michal Čihař's avatar Michal Čihař

Show same engage page regardless user is logged in or not

parent 80f8bef7
......@@ -45,15 +45,12 @@
<p>
{% blocktrans with object.name as name and object.get_total as total and object.get_language_count as languages and object.get_absolute_url as url and object.get_translated_percent as percent%}Translation project for {{ name }} currently contains {{ total }} strings for translation and is <a href="{{ url }}">being translated into {{ languages }} languages</a>. Overall, these translations are {{ percent }}% complete.{% endblocktrans %}
</p>
{% if user.is_authenticated %}
<p>
{% blocktrans with object.name as name and object.get_total as total and object.get_absolute_url as url %}If you would like to contribute to translation of {{ name }}, just proceed to the <a href="{{ url }}">translation section</a>.{% endblocktrans %}
{% blocktrans with object.name as name and object.get_total as total and object.get_absolute_url as url %}If you would like to contribute to translation of {{ name }}, you need to <a href="/accounts/register/">register on this server</a>.{% endblocktrans %}
</p>
{% else %}
<p>
{% blocktrans with object.name as name and object.get_total as total and object.get_absolute_url as url %}If you would like to contribute to translation of {{ name }}, you need to <a href="/accounts/register/">register on this server</a>. After registration, you can directly start contributing to the translation.{% endblocktrans %}
{% blocktrans with object.name as name and object.get_total as total and object.get_absolute_url as url %}Once you have activated your account just proceed to the <a href="{{ url }}">translation section</a>.{% endblocktrans %}
</p>
{% endif %}
</div>
<ul class="footer">
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment