58 lines
1.6 KiB
Python
58 lines
1.6 KiB
Python
"""Webapp urls."""
|
|
|
|
from django.conf.urls import url
|
|
# from django.utils.translation import ugettext_lazy as _
|
|
|
|
from webapp.views import main_index
|
|
from webapp.views import admin_index
|
|
from webapp.views import login_view
|
|
from webapp.views import logout_view
|
|
from webapp.views import about_view
|
|
from webapp.views import ohlhafv_view
|
|
from webapp.views import ohlhafv_submit
|
|
from webapp.views import ohlhafv_list
|
|
from webapp.views import guild_view
|
|
from webapp.views import freshmen_view
|
|
from webapp.views import jobs_view
|
|
from webapp.views import event_calendar_view
|
|
from webapp.views import international_view
|
|
from webapp.views import sosso_view
|
|
from webapp.views import contact_view
|
|
from webapp.views import kaehmy_view
|
|
from webapp.views import kaehmy_list_view
|
|
from webapp.views import kaehmy_submit
|
|
|
|
urlpatterns = [
|
|
# main
|
|
url(r'^$', main_index),
|
|
url(r'^sikadmin$', admin_index),
|
|
|
|
# login stuff
|
|
url(r'^login$', login_view),
|
|
url(r'^logout$', logout_view),
|
|
|
|
# git revision
|
|
url(r'^about', about_view),
|
|
|
|
# pages
|
|
url(r'^guild', guild_view),
|
|
url(r'^freshmen', freshmen_view),
|
|
url(r'^event_calendar', event_calendar_view),
|
|
url(r'^international', international_view),
|
|
url(r'^sosso', sosso_view),
|
|
url(r'^contact', contact_view),
|
|
|
|
# corporate
|
|
url(r'^jobs', jobs_view),
|
|
|
|
# kaehmy
|
|
url(r'^kaehmy$', kaehmy_list_view),
|
|
url(r'^kaehmy/new', kaehmy_view),
|
|
url(r'^kaehmy/submit', kaehmy_submit),
|
|
|
|
# ohlhafv
|
|
url(r'^ohlhafv$', ohlhafv_view),
|
|
url(r'^ohlhafv/submit', ohlhafv_submit),
|
|
url(r'^ohlhafv/list', ohlhafv_list),
|
|
]
|