Skip to content

Commit 3e4c10b

Browse files
committed
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 51dba4c
1 parent e6c418a commit 3e4c10b

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

ietf/templates/submit/edit_submission.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{% extends "submit/submit_base.html" %}
22
{# Copyright The IETF Trust 2015, All Rights Reserved #}
33
{% load origin %}
4-
4+
{% load staticfiles %}
55
{% load bootstrap3 %}
6-
76
{% load submit_tags %}
87

98
{% block pagehead %}
109
{{ block.super }}
11-
<link rel="stylesheet" href="/css/lib/select2.css">
12-
<link rel="stylesheet" href="/css/lib/select2-bootstrap.css">
10+
<link rel="stylesheet" href="{% static 'select2/select2.css' %}">
11+
<link rel="stylesheet" href="{% static 'select2-bootstrap-css/select2-bootstrap.min.css' %}">
1312
{% endblock %}
1413

1514
{% block title %}Adjust meta-data of submitted {{ submission.name }}{% endblock %}
@@ -97,6 +96,6 @@ <h3>Author {{ forloop.counter }}</h3>
9796
{% endblock %}
9897

9998
{% block js %}
100-
<script src="/js/lib/select2-3.5.2.min.js"></script>
101-
<script src="/js/select2-field.js"></script>
99+
<script src="{% static 'select2/select2.min.js' %}"></script>
100+
<script src="{% static 'ietf/js/select2-field.js' %}"></script>
102101
{% endblock %}

0 commit comments

Comments
 (0)