forked from extern/django-helpdesk
* Clean up API Help HTML
* Add RSS feeds to base.html header
This commit is contained in:
parent
c34a1e0974
commit
18a8814a85
@ -7,16 +7,33 @@
|
|||||||
font: 10pt "Trebuchet MS", Arial, sans-serif;
|
font: 10pt "Trebuchet MS", Arial, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
|
||||||
color: #00c;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, h2, h3, h4 {
|
h1, h2, h3, h4 {
|
||||||
font-family: Garamond, Times, serif;
|
font-family: Garamond, Times, serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
color: #00c;
|
||||||
|
font-size: 18pt;
|
||||||
|
border-bottom: solid 1px #00c;
|
||||||
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
color: #c00;
|
color: #c00;
|
||||||
|
font-size: 17pt;
|
||||||
|
border-bottom: solid 1px #c00;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
font-size: 14pt;
|
||||||
|
border-bottom: solid 1px #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
h4 {
|
||||||
|
font-size: 13pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
dl {
|
||||||
|
padding-left: 2em;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<title>Jutda Helpdesk API Documentation</title>
|
<title>Jutda Helpdesk API Documentation</title>
|
||||||
@ -46,7 +63,7 @@
|
|||||||
|
|
||||||
<h2 id='introduction'>Introduction</h2>
|
<h2 id='introduction'>Introduction</h2>
|
||||||
|
|
||||||
<p>Jutda Helpdesk provides a powerful <acronym title='Application Programming Interface'>API</acroynm> to allow you to interact with your helpdesk tickets by a means not otherwise provided by the helpdesk.</p>
|
<p>Jutda Helpdesk provides a powerful <acronym title='Application Programming Interface'>API</acronym> to allow you to interact with your helpdesk tickets by a means not otherwise provided by the helpdesk.</p>
|
||||||
|
|
||||||
<p>For example, you may use this API to implement a system to automatically open a ticket when an invoice is raised in your invoicing system, or to automatically close a ticket from an instant messenger application.</p>
|
<p>For example, you may use this API to implement a system to automatically open a ticket when an invoice is raised in your invoicing system, or to automatically close a ticket from an instant messenger application.</p>
|
||||||
|
|
||||||
|
@ -3,6 +3,9 @@
|
|||||||
<title>{% block helpdesk_title %}Helpdesk{% endblock %}</title>
|
<title>{% block helpdesk_title %}Helpdesk{% endblock %}</title>
|
||||||
<script src='{{ MEDIA_URL }}/helpdesk/jquery.js' type='text/javascript' language='javascript'></script>
|
<script src='{{ MEDIA_URL }}/helpdesk/jquery.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' />
|
||||||
|
<link rel='alternate' href='{% url helpdesk_rss "user" %}{{ user.username }}/' type='application/rss+xml' title='My Open Tickets' />
|
||||||
|
<link rel='alternate' href='{% url helpdesk_rss "recent" %}' type='application/rss+xml' title='All Recent Activity' />
|
||||||
|
<link rel='alternate' href='{% url helpdesk_rss "unassigned" %}' type='application/rss+xml' title='Unassigned Tickets' />
|
||||||
{% block helpdesk_head %}{% endblock %}
|
{% block helpdesk_head %}{% endblock %}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
Loading…
Reference in New Issue
Block a user