forked from extern/django-helpdesk
Issue #146: Wrong jQuery filename in public templates. Thanks, bruno.braga.
This commit is contained in:
parent
514f37bcb8
commit
af7c9cb797
@ -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 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.
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{% load i18n %}<html>
|
{% load i18n %}<html>
|
||||||
<head>
|
<head>
|
||||||
<title>{% block helpdesk_title %}{% trans "Helpdesk" %}{% endblock %}</title>
|
<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' />
|
<link rel='stylesheet' href='{{ MEDIA_URL }}helpdesk/helpdesk.css' type='text/css' />
|
||||||
{% block helpdesk_head %}{% endblock %}
|
{% block helpdesk_head %}{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
|
Loading…
Reference in New Issue
Block a user