mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-06 09:57:57 +00:00

part of the core, since it seems like it could be useful for other kinds of objects as well in the future, but for now only the software catalogue uses it.
21 lines
481 B
Python
21 lines
481 B
Python
from django.conf.urls.defaults import *
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^$', 'account.views.home'),
|
|
|
|
# News & Events
|
|
(r'^news/(.*)/$', 'news.views.form'),
|
|
(r'^events/(.*)/$', 'events.views.form'),
|
|
|
|
# Software catalogue
|
|
(r'^organisations/(.*)/$', 'core.views.organisationform'),
|
|
(r'^products/(.*)/$', 'downloads.views.productform'),
|
|
|
|
# Log in
|
|
(r'^login/$', 'account.views.login'),
|
|
|
|
# Log out
|
|
(r'^logout/$', 'account.views.logout'),
|
|
)
|