Merge alexgarel/django-helpdesk revision e4b4dd5 - Add CSS for printing

of tickets.
Closes GH-91.
This commit is contained in:
Ross Poulton 2012-01-23 22:49:55 +00:00
parent 56c6ba9c12
commit b63c480037
3 changed files with 4 additions and 1 deletions

View File

@ -12,7 +12,8 @@
{% comment %}
<script src='{{ STATIC_URL }}helpdesk/jquery.translate-debug-all.js' type='text/javascript' language='javascript'></script>
{% endcomment %}
<link rel='stylesheet' href='{{ STATIC_URL }}helpdesk/helpdesk.css' type='text/css' />
<link rel='stylesheet' href='{{ STATIC_URL }}helpdesk/helpdesk.css' type='text/css' media="screen" />
<link rel='stylesheet' href='{{ STATIC_URL }}helpdesk/helpdesk-print.css' type='text/css' media="print" />
<link rel='stylesheet' href='{{ STATIC_URL }}helpdesk/jquery-smoothness-theme/jquery-ui-1.8.9.custom.css' type='text/css' />
<link rel='alternate' href='{% url helpdesk_rss "user" %}{{ user.username }}/' type='application/rss+xml' title='{% trans "My Open Tickets" %}' />
<link rel='alternate' href='{% url helpdesk_rss "recent_activity" %}' type='application/rss+xml' title='{% trans "All Recent Activity" %}' />

View File

@ -107,6 +107,7 @@ function googleTranslateElementInit() {
</div>
{% endif %}
<div id='add-followup'>
<h3>{% trans "Respond to this ticket" %}</h3>
<form method='post' action='update/' enctype='multipart/form-data'>
@ -201,5 +202,6 @@ function googleTranslateElementInit() {
{% csrf_token %}</form>
</div>
{% endblock %}