* Added logout link/template

* Added ability for public to submit a ticket via the web if they aren't logged in
* Added ability for public to view ticket via web using ticket ID & e-mail address
* Added public ticket URL to e-mails
* Added manager to FollowUp class to
This commit is contained in:
Ross Poulton
2008-01-16 00:26:24 +00:00
parent ab320c782b
commit 2e2176547d
18 changed files with 346 additions and 20 deletions

View File

@ -58,6 +58,10 @@ urlpatterns = patterns('helpdesk.views',
url(r'^raw/(?P<type>\w+)/$',
'raw_details',
name='helpdesk_raw'),
url(r'^view/$',
'public_view',
name='helpdesk_public_view'),
)
urlpatterns += patterns('',