Merged in [10539] from lars@netapp.com:
Fix CSS/js inclusion of select2 from new static location. (Looks like this file
was forgotten when we began to use bower.)
- Legacy-Id: 10562
Note: SVN reference [10539] has been migrated to Git commit 51dba4c5e5
This commit is contained in:
parent
e6c418a672
commit
3e4c10bf00
|
@ -1,15 +1,14 @@
|
|||
{% extends "submit/submit_base.html" %}
|
||||
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
||||
{% load origin %}
|
||||
|
||||
{% load staticfiles %}
|
||||
{% load bootstrap3 %}
|
||||
|
||||
{% load submit_tags %}
|
||||
|
||||
{% block pagehead %}
|
||||
{{ block.super }}
|
||||
<link rel="stylesheet" href="/css/lib/select2.css">
|
||||
<link rel="stylesheet" href="/css/lib/select2-bootstrap.css">
|
||||
<link rel="stylesheet" href="{% static 'select2/select2.css' %}">
|
||||
<link rel="stylesheet" href="{% static 'select2-bootstrap-css/select2-bootstrap.min.css' %}">
|
||||
{% endblock %}
|
||||
|
||||
{% block title %}Adjust meta-data of submitted {{ submission.name }}{% endblock %}
|
||||
|
@ -97,6 +96,6 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block js %}
|
||||
<script src="/js/lib/select2-3.5.2.min.js"></script>
|
||||
<script src="/js/select2-field.js"></script>
|
||||
<script src="{% static 'select2/select2.min.js' %}"></script>
|
||||
<script src="{% static 'ietf/js/select2-field.js' %}"></script>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in a new issue