mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-15 23:40:17 +02:00
CDN Javascript & CSS fix and cleanup (#743)
* Add missing javascript and css * Remove unnecessary javascript and css
This commit is contained in:
parent
3e09f2179f
commit
693016e171
@ -6,8 +6,6 @@
|
|||||||
{% block title %}Alliance Auth - Fatlink Create{% endblock %}
|
{% block title %}Alliance Auth - Fatlink Create{% endblock %}
|
||||||
|
|
||||||
{% block page_title %}{% trans "Create Fatlink" %}{% endblock page_title %}
|
{% block page_title %}{% trans "Create Fatlink" %}{% endblock page_title %}
|
||||||
{% block extra_css %}
|
|
||||||
<link href="{% static 'css/jquery.datetimepicker.css' %}" rel="stylesheet" type="text/css">{% endblock extra_css %}
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="col-lg-12">
|
<div class="col-lg-12">
|
||||||
|
@ -7,9 +7,6 @@
|
|||||||
{% block title %}{% trans "Alliance Auth - Structure Timer Create" %}{% endblock %}
|
{% block title %}{% trans "Alliance Auth - Structure Timer Create" %}{% endblock %}
|
||||||
|
|
||||||
{% block page_title %}{% trans "Timer Create" %}{% endblock page_title %}
|
{% block page_title %}{% trans "Timer Create" %}{% endblock page_title %}
|
||||||
{% block extra_css %}
|
|
||||||
{% include 'bundles/jquery-datetimepicker-css.html' %}
|
|
||||||
{% endblock extra_css %}
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="col-lg-12">
|
<div class="col-lg-12">
|
||||||
@ -30,17 +27,3 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
||||||
{% block extra_javascript %}
|
|
||||||
{% include 'bundles/jquery-datetimepicker-js.html' %}
|
|
||||||
{% endblock %}
|
|
||||||
|
|
||||||
{% block extra_script %}
|
|
||||||
|
|
||||||
$('#id_eve_time').datetimepicker({
|
|
||||||
lang: '{{ LANGUAGE_CODE }}',
|
|
||||||
maskInput: true,
|
|
||||||
format: 'Y-m-d H:i',minDate:0
|
|
||||||
});
|
|
||||||
|
|
||||||
{% endblock extra_script %}
|
|
||||||
|
@ -7,8 +7,10 @@
|
|||||||
{% block title %}Alliance Auth - Update Fleet Operation {% endblock %}
|
{% block title %}Alliance Auth - Update Fleet Operation {% endblock %}
|
||||||
|
|
||||||
{% block page_title %}{% trans "Update AAR Link" %}{% endblock page_title %}
|
{% block page_title %}{% trans "Update AAR Link" %}{% endblock page_title %}
|
||||||
|
|
||||||
{% block extra_css %}
|
{% block extra_css %}
|
||||||
<link href="{% static 'css/jquery.datetimepicker.css' %}" rel="stylesheet" type="text/css">{% endblock extra_css %}
|
{% include 'bundles/jquery-datetimepicker-css.html' %}
|
||||||
|
{% endblock extra_css %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
@ -37,6 +39,10 @@
|
|||||||
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
||||||
|
{% block extra_javascript %}
|
||||||
|
{% include 'bundles/jquery-datetimepicker-js.html' %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block extra_script %}
|
{% block extra_script %}
|
||||||
|
|
||||||
$('#id_start').datetimepicker({
|
$('#id_start').datetimepicker({
|
||||||
|
@ -7,7 +7,8 @@
|
|||||||
|
|
||||||
{% block page_title %}{% trans "SRP Fleet Create" %}{% endblock page_title %}
|
{% block page_title %}{% trans "SRP Fleet Create" %}{% endblock page_title %}
|
||||||
{% block extra_css %}
|
{% block extra_css %}
|
||||||
<link href="{% static 'css/jquery.datetimepicker.css' %}" rel="stylesheet" type="text/css">{% endblock extra_css %}
|
{% include 'bundles/jquery-datetimepicker-css.html' %}
|
||||||
|
{% endblock extra_css %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
@ -40,6 +41,10 @@
|
|||||||
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
||||||
|
{% block extra_javascript %}
|
||||||
|
{% include 'bundles/jquery-datetimepicker-js.html' %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
{% block extra_script %}
|
{% block extra_script %}
|
||||||
|
|
||||||
$('#id_fleet_time').datetimepicker({
|
$('#id_fleet_time').datetimepicker({
|
||||||
|
@ -6,8 +6,6 @@
|
|||||||
{% block title %}Alliance Auth - SRP Request{% endblock %}
|
{% block title %}Alliance Auth - SRP Request{% endblock %}
|
||||||
|
|
||||||
{% block page_title %}{% trans "SRP Request" %}{% endblock page_title %}
|
{% block page_title %}{% trans "SRP Request" %}{% endblock page_title %}
|
||||||
{% block extra_css %}
|
|
||||||
<link href="{% static 'css/jquery.datetimepicker.css' %}" rel="stylesheet" type="text/css">{% endblock extra_css %}
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
@ -42,12 +40,3 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
||||||
{% block extra_script %}
|
|
||||||
|
|
||||||
$('#id_fleet_time').datetimepicker({
|
|
||||||
maskInput: true,
|
|
||||||
format: 'Y-m-d H:i',minDate:0
|
|
||||||
});
|
|
||||||
|
|
||||||
{% endblock extra_script %}
|
|
||||||
|
@ -6,8 +6,6 @@
|
|||||||
{% block title %}Alliance Auth - Update SRP Amount{% endblock %}
|
{% block title %}Alliance Auth - Update SRP Amount{% endblock %}
|
||||||
|
|
||||||
{% block page_title %}{% trans "Update SRP Amount" %}{% endblock page_title %}
|
{% block page_title %}{% trans "Update SRP Amount" %}{% endblock page_title %}
|
||||||
{% block extra_css %}
|
|
||||||
<link href="{% static 'css/jquery.datetimepicker.css' %}" rel="stylesheet" type="text/css">{% endblock extra_css %}
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
@ -31,12 +29,3 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
||||||
{% block extra_script %}
|
|
||||||
|
|
||||||
$('#id_fleet_time').datetimepicker({
|
|
||||||
maskInput: true,
|
|
||||||
format: 'Y-m-d H:i',minDate:0
|
|
||||||
});
|
|
||||||
|
|
||||||
{% endblock extra_script %}
|
|
||||||
|
@ -6,8 +6,6 @@
|
|||||||
{% block title %}Alliance Auth - Update AAR Link{% endblock %}
|
{% block title %}Alliance Auth - Update AAR Link{% endblock %}
|
||||||
|
|
||||||
{% block page_title %}{% trans "Update AAR Link" %}{% endblock page_title %}
|
{% block page_title %}{% trans "Update AAR Link" %}{% endblock page_title %}
|
||||||
{% block extra_css %}
|
|
||||||
<link href="{% static 'css/jquery.datetimepicker.css' %}" rel="stylesheet" type="text/css">{% endblock extra_css %}
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
@ -35,12 +33,3 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
||||||
{% block extra_script %}
|
|
||||||
|
|
||||||
$('#id_fleet_time').datetimepicker({
|
|
||||||
maskInput: true,
|
|
||||||
format: 'Y-m-d H:i',minDate:0
|
|
||||||
});
|
|
||||||
|
|
||||||
{% endblock extra_script %}
|
|
||||||
|
@ -6,8 +6,6 @@
|
|||||||
{% block title %}Alliance Auth - Update Structure Timer {% endblock %}
|
{% block title %}Alliance Auth - Update Structure Timer {% endblock %}
|
||||||
|
|
||||||
{% block page_title %}{% trans "Update AAR Link" %}{% endblock page_title %}
|
{% block page_title %}{% trans "Update AAR Link" %}{% endblock page_title %}
|
||||||
{% block extra_css %}
|
|
||||||
<link href="{% static 'css/jquery.datetimepicker.css' %}" rel="stylesheet" type="text/css">{% endblock extra_css %}
|
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
@ -35,12 +33,3 @@
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
||||||
{% block extra_script %}
|
|
||||||
|
|
||||||
$('#id_fleet_time').datetimepicker({
|
|
||||||
maskInput: true,
|
|
||||||
format: 'Y-m-d H:i',minDate:0
|
|
||||||
});
|
|
||||||
|
|
||||||
{% endblock extra_script %}
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user