diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-29 20:04:51 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-29 20:04:51 +0100 |
| commit | ef4a13bd49ea9afa286381bb11510efb1b0d76e9 (patch) | |
| tree | 9a0cbffdf76eaeef6d9047091c5b24c3fec83522 /ishtar/templates | |
| parent | c6f55a31a651dcfd0f34d687e91a0660381050db (diff) | |
| download | Ishtar-ef4a13bd49ea9afa286381bb11510efb1b0d76e9.tar.bz2 Ishtar-ef4a13bd49ea9afa286381bb11510efb1b0d76e9.zip | |
Creation of archaelogical file (refs #14) - integration of an AJAX autocomplete field
Diffstat (limited to 'ishtar/templates')
| -rw-r--r-- | ishtar/templates/base.html | 2 | ||||
| -rw-r--r-- | ishtar/templates/file_wizard.html | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/ishtar/templates/base.html b/ishtar/templates/base.html index 12954a70d..726520c54 100644 --- a/ishtar/templates/base.html +++ b/ishtar/templates/base.html @@ -9,7 +9,9 @@ <title>{% block title %}Ishtar{% if APP_NAME %} - {{APP_NAME}}{%endif%}{% endblock %} </title> <script language="javascript" type="text/javascript" src="{{JQUERY_URL}}"></script> + <script language="javascript" type="text/javascript" src="{{JQUERY_UI_URL}}jquery-ui.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" /> </head> <body> diff --git a/ishtar/templates/file_wizard.html b/ishtar/templates/file_wizard.html index aa19420e2..4bb6a59c8 100644 --- a/ishtar/templates/file_wizard.html +++ b/ishtar/templates/file_wizard.html @@ -4,9 +4,9 @@ {% block content %} <ul id='form_path'> {% for step in extra_context.previous_steps %} - <li>» <a href='{%url action_form CURRENT_ACTION step.slug%}'>{{step.label}}</a></li> + <li>» <a href='{%url action-form CURRENT_ACTION step.slug%}'>{{step.label}}</a></li> {% endfor %} - <li class='current'>» <a href='{%url action_form CURRENT_ACTION extra_context.current_step.slug%}'>{{extra_context.current_step.label}}</a></li> + <li class='current'>» <a href='{%url action-form CURRENT_ACTION extra_context.current_step.slug%}'>{{extra_context.current_step.label}}</a></li> </ul> <div class='form'> <form action="." method="post">{% csrf_token %} |
