summaryrefslogtreecommitdiff
path: root/ishtar/templates
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/templates')
-rw-r--r--ishtar/templates/base.html2
-rw-r--r--ishtar/templates/default_wizard.html5
2 files changed, 6 insertions, 1 deletions
diff --git a/ishtar/templates/base.html b/ishtar/templates/base.html
index e726cf782..22e6d4239 100644
--- a/ishtar/templates/base.html
+++ b/ishtar/templates/base.html
@@ -16,6 +16,8 @@
<script language="javascript" type="text/javascript" src="{{JQUERY_UI_URL}}ui/i18n/jquery.ui.datepicker-{{COUNTRY}}.js"></script>
<script language="javascript" type="text/javascript" src="{{MEDIA_URL}}/js/ishtar.js"></script>
<link type="text/css" href="{{JQUERY_UI_URL}}css/smoothness/jquery-ui.css" rel="stylesheet" />
+ {% block extra_head %}
+ {% endblock %}
</head>
<body>
<div id="header">
diff --git a/ishtar/templates/default_wizard.html b/ishtar/templates/default_wizard.html
index ff1bc7975..1666b4979 100644
--- a/ishtar/templates/default_wizard.html
+++ b/ishtar/templates/default_wizard.html
@@ -1,6 +1,9 @@
{% extends "base.html" %}
{% load i18n %}
{% load range %}
+{% block extra_head %}
+{{form.media}}
+{% endblock %}
{% block content %}
<form action="." method="post">{% csrf_token %}
<ul id='form_path'>
@@ -26,7 +29,7 @@
{% endif %}
<input type="hidden" name="{{ step_field }}" value="{{ step0 }}" />
{{ previous_fields|safe }}
-<input type="submit" value="{% trans "Validate" %}"/>
+<input type="submit" id="submit_form" value="{% trans "Validate" %}"/>
</div>
</form>
{% endblock %}