mirror of
https://github.com/stefanpejcic/openpanel
synced 2025-06-26 18:28:26 +00:00
39 lines
632 B
HTML
39 lines
632 B
HTML
{% extends 'base.html' %}
|
|
{% block content %}
|
|
|
|
|
|
|
|
<script type="module">
|
|
// some js code
|
|
</script>
|
|
|
|
|
|
<p>{{ _('Localized text.') }}</p>
|
|
|
|
<form method="post">
|
|
<textarea id="editor_file" name="some_editor_content" rows="40" cols="100"></textarea>
|
|
</div>
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<footer class="main-footer btn-toolbar" role="toolbar">
|
|
|
|
<div class="btn-group" role="group" aria-label="{{ _('Status') }}">
|
|
<label>{{ _('Status') }}</label>
|
|
</div>
|
|
|
|
<div class="ms-auto" role="group" aria-label="{{ _('Actions') }}">
|
|
<button type="submit" class="btn btn-primary">{{ _('Save Changes') }}</button></form>
|
|
</div>
|
|
</footer>
|
|
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|