2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 21:15:41 +00:00

german translation, HTML tags refactored

This commit is contained in:
Andreas Kaiser
2021-03-06 21:52:57 +01:00
parent ae3a0133eb
commit 48cd227f06
6 changed files with 208 additions and 346 deletions

View File

@ -1,7 +1,8 @@
{% extends "base.html" %}
{% load i18n %}
{% block content %}
<h4>Logout</h4>
<p>You have been logged out</p>
<p>Click <a href="{% url 'login' %}">here</a> to log in</p>
<h4>{% trans "Logout" %}</h4>
<p>{% trans "You have been logged out" %}</p>
<p>{% trans 'Click' %} <a href="{% url 'login' %}"> {% trans 'here</a> to log in</p>' %}
{% endblock %}