male zmiany w css

This commit is contained in:
Mateusz Gruszczyński 2025-02-25 22:44:58 +01:00
parent d66797312d
commit 16c9a75253

View File

@ -4,27 +4,32 @@
<h2>Podgląd eksportu: {{ backup.file_path|basename }}</h2> <h2>Podgląd eksportu: {{ backup.file_path|basename }}</h2>
<hr> <hr>
<textarea id="exportEditor" readonly>{{ content|e }}</textarea> <textarea id="exportEditor" readonly>{{ content|e }}</textarea>
<br>
<a href="{{ next_url }}" class="btn btn-secondary">Powrót</a> <a href="{{ next_url }}" class="btn btn-secondary">Powrót</a>
</div> </div>
<!-- CodeMirror CSS --> <!-- CodeMirror CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.5/codemirror.min.css"> {% if session.get('dark_mode', True) %}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.5/theme/darcula.min.css">
{% else %}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.5/theme/neo.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.5/theme/neo.min.css">
{% endif %}
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.5/codemirror.min.css">
<!-- CodeMirror JS --> <!-- CodeMirror JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.5/codemirror.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.5/codemirror.min.js"></script>
<!-- Dodajemy tryb dla plików shell, który dobrze radzi sobie z konfiguracjami RouterOS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.5/mode/shell/shell.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.65.5/mode/shell/shell.min.js"></script>
<script> <script>
document.addEventListener("DOMContentLoaded", function() { document.addEventListener("DOMContentLoaded", function() {
var editor = CodeMirror.fromTextArea(document.getElementById("exportEditor"), { var editor = CodeMirror.fromTextArea(document.getElementById("exportEditor"), {
mode: "text/x-sh", mode: "text/x-sh",
theme: "neo", theme: "{{ 'darcula' if session.get('dark_mode', True) else 'neo' }}",
lineNumbers: true, lineNumbers: true,
readOnly: true readOnly: true
}); });
// Dopasowanie rozmiaru edytora do zawartości // Dopasowanie rozmiaru edytora do zawartości
editor.setSize("100%", "800px"); editor.setSize("100%", "588px");
}); });
</script> </script>
{% endblock %} {% endblock %}