|
@@ -1,5 +1,5 @@
|
|
|
{% load i18n admin_static jet_tags %}
|
|
|
-{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %}{% format_current_language LANGUAGE_CODE as LANGUAGE_CODE %}{% get_current_theme as THEME %}
|
|
|
+{% get_current_language as LANGUAGE_CODE %}{% get_current_language_bidi as LANGUAGE_BIDI %}{% format_current_language LANGUAGE_CODE as LANGUAGE_CODE %}{% get_current_theme as THEME %}{% get_current_jet_version as JET_VERSION %}
|
|
|
{% block html %}<!DOCTYPE html>
|
|
|
<html lang="{{ LANGUAGE_CODE|default:"en-us" }}" {% if LANGUAGE_BIDI %}dir="rtl"{% endif %}>
|
|
|
<head>
|
|
@@ -11,10 +11,10 @@
|
|
|
<link href="{% static "jet/vendor/jquery-ui/jquery-ui.min.css" %}" rel="stylesheet" />
|
|
|
<link href="{% static "jet/vendor/jquery-ui-timepicker/jquery.ui.timepicker.css" %}" rel="stylesheet" />
|
|
|
<link href="{% static "jet/vendor/perfect-scrollbar/css/perfect-scrollbar.css" %}" rel="stylesheet" />
|
|
|
- <link href="{% static "jet/css/icons/style.css" %}" rel="stylesheet" />
|
|
|
- <link href="{% static "jet/css/themes/"|add:THEME|add:"/base.css" %}" rel="stylesheet" />
|
|
|
- <link href="{% static "jet/css/themes/"|add:THEME|add:"/select2.theme.css" %}" rel="stylesheet" />
|
|
|
- <link href="{% static "jet/css/themes/"|add:THEME|add:"/jquery-ui.theme.css" %}" rel="stylesheet" />
|
|
|
+ <link href="{% static "jet/css/icons/style.css" %}?v={{ JET_VERSION }}" rel="stylesheet" />
|
|
|
+ <link href="{% static "jet/css/themes/"|add:THEME|add:"/base.css" %}?v={{ JET_VERSION }}" rel="stylesheet" />
|
|
|
+ <link href="{% static "jet/css/themes/"|add:THEME|add:"/select2.theme.css" %}?v={{ JET_VERSION }}" rel="stylesheet" />
|
|
|
+ <link href="{% static "jet/css/themes/"|add:THEME|add:"/jquery-ui.theme.css" %}?v={{ JET_VERSION }}" rel="stylesheet" />
|
|
|
<!--[if lte IE 7]><link rel="stylesheet" type="text/css" href="{% block stylesheet_ie %}{% static "admin/css/ie.css" %}{% endblock %}" /><![endif]-->
|
|
|
{% if LANGUAGE_BIDI %}<link rel="stylesheet" type="text/css" href="{% block stylesheet_rtl %}{% static "admin/css/rtl.css" %}{% endblock %}" />{% endif %}
|
|
|
{% block extrastyle %}{% endblock %}
|
|
@@ -48,8 +48,8 @@
|
|
|
var jet = jet || {};
|
|
|
jet.jQuery = jQuery.noConflict(true);
|
|
|
</script>
|
|
|
- <script src="{% static "jet/js/main.min.js" %}"></script>
|
|
|
- <script src="{% static "jet/js/select2.jet.min.js" %}"></script>
|
|
|
+ <script src="{% static "jet/js/main.min.js" %}?v={{ JET_VERSION }}"></script>
|
|
|
+ <script src="{% static "jet/js/select2.jet.min.js" %}?v={{ JET_VERSION }}"></script>
|
|
|
{% block extrahead %}{% endblock %}
|
|
|
</head>
|
|
|
<body class="{% if is_popup %}popup {% endif %}{% block bodyclass %}{% endblock %}">
|