Compare commits

..

No commits in common. "a6e84fbc1381ae01e8119c653c11f472e4ae98d1" and "63258147ee108736b429b831f706a83b95b941e4" have entirely different histories.

2 changed files with 6 additions and 4 deletions

View File

@ -57,9 +57,6 @@
{{ "search"|remix }}
</a>
</li>
<li>
{% blocktranslate %}Logged in as <strong>{{ user }}</strong>{% endblocktranslate %}
</li>
<li>
<a href="{% url "logout" %}" accesskey="l">
<span>{% translate "Log out" %}</span>
@ -73,6 +70,11 @@
</li>
{% endif %}
</ul>
{% if user.is_authenticated %}
<p>
{% blocktranslate %}Logged in as <strong>{{ user }}</strong>{% endblocktranslate %}
</p>
{% endif %}
</nav>
{% endspaceless %}
{% endblock %}

View File

@ -10,7 +10,7 @@
{{ block.super }}
{% if account or category %}
<p class="back">
<a href="{% url "transaction_year" year.year %}">{% translate "Back" %}{{ "arrow-go-back"|remix }}</a>
<a class="big-link" href="{% url "transaction_year" year.year %}">{% translate "Back" %}{{ "arrow-go-back"|remix }}</a>
</p>
{% endif %}
{% endblock %}