~ev/uci-engine/quiet

« back to all changes in this revision

Viewing changes to ticket_system/ticket_system/urls.py

  • Committer: Chris Johnston
  • Date: 2013-12-09 17:29:57 UTC
  • mto: This revision was merged to the branch mainline in revision 17.
  • Revision ID: chrisjohnston@ubuntu.com-20131209172957-y8vjn34zq17ugm8h
Add initial setup for the ticket system

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Ubuntu Continuous Integration Engine
 
2
# Copyright 2013 Canonical Ltd.
 
3
 
 
4
# This program is free software: you can redistribute it and/or modify it
 
5
# under the terms of the GNU Affero General Public License version 3, as
 
6
# published by the Free Software Foundation.
 
7
 
 
8
# This program is distributed in the hope that it will be useful, but
 
9
# WITHOUT ANY WARRANTY; without even the implied warranties of
 
10
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
 
11
# PURPOSE.  See the GNU Affero General Public License for more details.
 
12
 
 
13
# You should have received a copy of the GNU Affero General Public License
 
14
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 
 
16
from django.conf.urls import patterns, include, url
 
17
from django.contrib import admin
 
18
 
 
19
admin.autodiscover()
 
20
 
 
21
urlpatterns = patterns(
 
22
    '',
 
23
    url(r'^admin/', include(admin.site.urls)),
 
24
)