-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
56 changed files
with
2,901 additions
and
376 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
{% extends "d120_base.html" %} | ||
{% load i18n %} | ||
|
||
{% block title %}Seite nicht gefunden{% endblock %} | ||
{% block title %}{% translate "Seite nicht gefunden" %}{% endblock %} | ||
|
||
{% block content %} | ||
<h1>Seite nicht gefunden</h1> | ||
<p>Es sieht so aus, als ob Du auf eine Seite zugreifen möchtest, die nicht existiert.</p> | ||
<p>Bitte überprüfe die Schreibweise der URL und versuche es erneut.</p> | ||
<p> Fehler: {{ exception }}</p> | ||
<h1>{% translate "Seite nicht gefunden" %}</h1> | ||
<p>{% translate "Es sieht so aus, als ob Du auf eine Seite zugreifen möchtest, die nicht existiert." %}</p> | ||
<p>{% translate "Bitte überprüfe die Schreibweise der URL und versuche es erneut." %}</p> | ||
<p>{% blocktranslate %} Fehler: {{ exception }}{% endblocktranslate %}</p> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{% extends "d120_base.html" %} | ||
{% load i18n %} | ||
|
||
{% block title %}Serverfehler{% endblock %} | ||
{% block title %}{% translate "Serverfehler" %}{% endblock %} | ||
|
||
{% block content %} | ||
<h1>Serverfehler</h1> | ||
<p>HTTP 500 - Internal Server Error</p> | ||
<p>Der Administrator wurde benachrichtigt.</p> | ||
<h1>{% translate "Serverfehler" %}</h1> | ||
<p>{% translate "HTTP 500 - Internal Server Error" %}</p> | ||
<p>{% translate "Der Administrator wurde benachrichtigt." %}</p> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{% extends "admin/base_site.html" %} | ||
|
||
{% load i18n %} | ||
{% block content %} | ||
|
||
<form action="" method="post"> | ||
{% csrf_token %} | ||
{{ status }} | ||
<p>Es wird für folgende Veranstaltungen der Status auf keine Evaluation geändert:</p> | ||
<p>{% translate "Es wird für folgende Veranstaltungen der Status auf keine Evaluation geändert:" %}</p> | ||
|
||
<ul>{{ veranstaltungen|unordered_list }}</ul> | ||
|
||
<input type="hidden" name="action" value="keine_evaluation_action" /> | ||
<input type="submit" name="apply" value="Übernehmen" /> | ||
<input type="submit" name="apply" value="{% translate "Übernehmen" %}" /> | ||
</form> | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{% extends "admin/base_site.html" %} | ||
|
||
{% load i18n %} | ||
{% block content %} | ||
|
||
<form action="" method="post"> | ||
{% csrf_token %} | ||
{{ status }} | ||
<p>Es wird der Status für folgende Veranstaltungen geändert:</p> | ||
<p>{% translate "Es wird der Status für folgende Veranstaltungen geändert:" %}</p> | ||
|
||
<ul>{{ veranstaltungen|unordered_list }}</ul> | ||
|
||
<input type="hidden" name="action" value="status_aendern_action" /> | ||
<input type="submit" name="apply" value="Übernehmen" /> | ||
<input type="submit" name="apply" value="{% translate "Übernehmen" %}" /> | ||
</form> | ||
|
||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
{% extends "d120_base.html" %} | ||
{% load i18n %} | ||
|
||
{% block section_veranstalter %} | ||
current | ||
{% endblock %} | ||
|
||
{% block backlink %} | ||
{% if request.user.is_superuser %} | ||
<p><a href="{% url 'intern-index' %}">zurück zum internen Bereich</a></p> | ||
<p><a href="{% url 'intern-index' %}">{% translate "zurück zum internen Bereich" %}</a></p> | ||
{% else %} | ||
<p><a href="{% url 'veranstalter-index' %}">zurück zum Veranstalterbereich</a></p> | ||
<p><a href="{% url 'veranstalter-index' %}">{% translate "zurück zum Veranstalterbereich" %}</a></p> | ||
{% endif %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
{% load i18n %} | ||
<form action="" method="post"> | ||
{{ form.as_p }} | ||
<input type="submit" value="Create" /> | ||
<input type="submit" value="{% translate "Create" %}" /> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
{% extends "bestellung_base.html" %} | ||
{% load i18n %} | ||
|
||
{% block content %} | ||
<h3>Die Bestellung wurde entgegengenommen</h3> | ||
<h3>{% translate "Die Bestellung wurde entgegengenommen" %}</h3> | ||
|
||
<a href="{% url 'veranstalter-logout' %}">Ausloggen</a> | ||
<a href="{% url 'veranstalter-logout' %}">{% translate "Ausloggen" %}</a> | ||
{% endblock %} |
Oops, something went wrong.