Include some missing css and javascript for the submit/edit page. Fixes #1760 (though a more thourogh fix for when javascript is disabled is desirable). Commit ready for merge.

- Legacy-Id: 9962
This commit is contained in:
Robert Sparks 2015-08-03 15:56:42 +00:00
parent 1fb8f5a005
commit 56f31cf083

View file

@ -6,6 +6,12 @@
{% load submit_tags %}
{% block pagehead %}
{{ block.super }}
<link rel="stylesheet" href="/css/lib/select2.css">
<link rel="stylesheet" href="/css/lib/select2-bootstrap.css">
{% endblock %}
{% block title %}Adjust meta-data of submitted {{ submission.name }}{% endblock %}
{% block submit_content %}
@ -89,3 +95,8 @@
{% include "submit/problem-reports-footer.html" %}
</p>
{% endblock %}
{% block js %}
<script src="/js/lib/select2-3.5.2.min.js"></script>
<script src="/js/select2-field.js"></script>
{% endblock %}