Issue #146: Wrong jQuery filename in public templates. Thanks, bruno.braga.

This commit is contained in:
Ross Poulton 2010-09-04 06:59:28 +00:00
parent 514f37bcb8
commit af7c9cb797
2 changed files with 4 additions and 2 deletions

View File

@ -59,4 +59,6 @@ pagination issues. Thanks to Walter Doekes for the patches.
2010-09-04 r159 Error when updating multiple tickets. Issue #135.
2010-09-04 r160 Fix translation blocks in deletion templates. Some translation strings will need to be updated.
2010-09-04 r160 Fix translation blocks in deletion templates. Some translation strings will need to be updated. Thanks to william88 for the bug report.
2010-09-04 r161 Fix jQuery filename in public templates. Thanks to bruno.braga for the fix.

View File

@ -1,7 +1,7 @@
{% load i18n %}<html>
<head>
<title>{% block helpdesk_title %}{% trans "Helpdesk" %}{% endblock %}</title>
<script src='{{ MEDIA_URL }}helpdesk/jquery.js' type='text/javascript' language='javascript'></script>
<script src='{{ MEDIA_URL }}helpdesk/jquery-1.3.2.min.js' type='text/javascript' language='javascript'></script>
<link rel='stylesheet' href='{{ MEDIA_URL }}helpdesk/helpdesk.css' type='text/css' />
{% block helpdesk_head %}{% endblock %}
</head>