labertasche/templates/modals/project_not_found.html
Domeniko Gentner 5ac50ed667 i18n
* Added class for internationalization to the project
* Added English and German language files
* Moved all strings to the language files
* Translated to German
* Added context processor to inject language file into every template
* Translated modals
* Added translation endpoint for Javascript
* Translated Javascript messages
* Improved dashboard javascript by removing duplicates
2020-12-25 14:26:48 +01:00

26 lines
1.2 KiB
HTML

<div class="modal" id="modal-project-not-found">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head has-background-danger">
<p class="modal-card-title has-text-white is-capitalized">{{ i18n['error'] }}</p>
<button onclick="hide_modal('modal-project-not-found')" class="delete" aria-label="close"></button>
</header>
<section class="modal-card-body has-text-black">
<div class="block">{{ i18n['message_project_404'] }}</div>
<div class="block">
<a class="has-text-info is-uppercase"
href="https://github.com/domeniko-gentner/labertasche/issues"
target="_blank" rel="nofollow noopener norefferer">
{{ i18n['link'] }}
</a>
</div>
</section>
<footer class="modal-card-foot">
<button id="modal-ok" onclick="hide_modal('modal-project-not-found', {{ url_for('bp_dashboard.dashboard_project_list') }})"
class="button is-success is-capitalized">
{{ i18n['ok'] }}
</button>
</footer>
</div>
</div>