2016-08-09 06:42:21 +00:00
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
<!-- css file -->
|
2016-09-30 10:25:50 +00:00
|
|
|
<link href="{% static 'css/bootstrap.min.css' %}" rel="stylesheet">
|
2018-01-10 11:39:22 +00:00
|
|
|
<link href="{% static 'css/font-awesome.min.css' %}" rel="stylesheet">
|
2016-09-30 10:25:50 +00:00
|
|
|
<link href="{% static 'css/plugins/toastr/toastr.min.css' %}" rel="stylesheet">
|
|
|
|
<link href="{% static 'css/plugins/sweetalert/sweetalert.css' %}" rel="stylesheet">
|
|
|
|
<link href="{% static 'css/style.css' %}" rel="stylesheet">
|
|
|
|
<link href="{% static 'css/plugins/vaildator/jquery.validator.css' %}" rel="stylesheet">
|
2023-01-30 07:19:05 +00:00
|
|
|
<link href="{% static 'css/plugins/select2/select2.min.css' %}" rel="stylesheet">
|
|
|
|
|
2016-08-09 06:42:21 +00:00
|
|
|
<!-- scripts -->
|
2022-10-13 06:29:42 +00:00
|
|
|
<script src="{% static 'js/jquery-3.6.1.min.js' %}"></script>
|
2016-09-14 07:19:27 +00:00
|
|
|
<script src="{% static 'js/plugins/sweetalert/sweetalert.min.js' %}"></script>
|
2020-11-17 08:15:43 +00:00
|
|
|
<script src="{% url 'javascript-catalog' %}"></script>
|
2023-01-30 07:19:05 +00:00
|
|
|
<script src="{% static 'js/bootstrap.min.js' %}"></script>
|
2022-07-05 06:43:56 +00:00
|
|
|
<style>
|
|
|
|
:root {
|
|
|
|
--primary-color: #1ab394;
|
|
|
|
}
|
|
|
|
</style>
|
2019-12-05 07:09:25 +00:00
|
|
|
|
2022-07-05 06:43:56 +00:00
|
|
|
<script>
|
2022-07-12 05:45:48 +00:00
|
|
|
const themeInfo = {{ INTERFACE.theme_info | safe }};
|
|
|
|
if (themeInfo && themeInfo.colors && themeInfo.colors['--color-primary']) {
|
2023-01-30 07:19:05 +00:00
|
|
|
document.documentElement.style.setProperty('--primary-color', themeInfo.colors['--color-primary']);
|
2022-07-06 09:26:09 +00:00
|
|
|
}
|
2022-07-05 06:43:56 +00:00
|
|
|
</script>
|