forked from tsaylor/Maker-Network
-
Notifications
You must be signed in to change notification settings - Fork 2
/
urls.py
40 lines (30 loc) · 1.52 KB
/
urls.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from django.conf.urls.defaults import *
from django.conf import settings
from django.views.generic.simple import direct_to_template
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
urlpatterns = patterns('',
# Example:
# (r'^project/', include('project.foo.urls')),
(r'^accounts/', include('registration.urls')),
(r'^messages/', include('django.contrib.comments.urls')),
url(r'^$', 'tagmail.views.home', name='home'),
url(r'^view_thread/(?P<pk>\d*)/(?P<slug>[\w-]*)$', 'tagmail.views.view_thread', name='tagmail_view_thread'),
url(r'^profile/edit$', 'general.views.edit_profile', name='profile_edit'),
url(r'^profile/(?P<username>.*)$', 'general.views.view_profile', name='profile_view'),
url(r'^groups/', include('general.org_urls')),
url(r'^skill/', include('general.skill_urls')),
url(r'^resources/', include('general.resource_urls')),
url(r'^search/', 'general.views.search', name='search_results'),
#url(r'^api/', include('api.urls')),
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
(r'^admin/', include(admin.site.urls)),
)
if getattr(settings, 'MEDIA_SERVE', False):
urlpatterns = patterns('',
url(r'^media/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
) + urlpatterns