|
|
|
@ -12,18 +12,19 @@ from .views import ( |
|
|
|
CreateTeamInvitation, |
|
|
|
CreateTeamInvitation, |
|
|
|
CustomerProfileView, |
|
|
|
CustomerProfileView, |
|
|
|
CustomerProfileCurrentProjectsView, |
|
|
|
CustomerProfileCurrentProjectsView, |
|
|
|
CustomerProfileOpenProjectsView, |
|
|
|
|
|
|
|
CustomerProfileReviewsView, |
|
|
|
CustomerProfileReviewsView, |
|
|
|
CustomerProfileTrashedProjectsView, |
|
|
|
CustomerProfileTrashedProjectsView, |
|
|
|
TeamCreateView, |
|
|
|
TeamCreateView, |
|
|
|
TeamProfileView, |
|
|
|
TeamProfileView, |
|
|
|
UserProfileEditViewFull, |
|
|
|
UserProfileEditViewFull, |
|
|
|
|
|
|
|
dashboard_redirect |
|
|
|
) |
|
|
|
) |
|
|
|
|
|
|
|
|
|
|
|
app_name = 'users' |
|
|
|
app_name = 'users' |
|
|
|
|
|
|
|
|
|
|
|
urlpatterns = [ |
|
|
|
urlpatterns = [ |
|
|
|
urls.url(r'^(?P<pk>\d+)/edit/$', UserProfileEditViewFull.as_view(), name='user-profile-edit'), |
|
|
|
urls.url(r'^(?P<pk>\d+)/edit/$', UserProfileEditViewFull.as_view(), name='user-profile-edit'), |
|
|
|
|
|
|
|
urls.url(r'^dashboard_redirect/$', dashboard_redirect, name='dashboard-redirect'), |
|
|
|
urls.url(r'^customers/(?P<pk>\d+)/$', CustomerProfileView.as_view(), |
|
|
|
urls.url(r'^customers/(?P<pk>\d+)/$', CustomerProfileView.as_view(), |
|
|
|
name='customer-profile'), |
|
|
|
name='customer-profile'), |
|
|
|
urls.url(r'^customers/(?P<pk>\d+)/trashed-projects/$', CustomerProfileTrashedProjectsView.as_view(), |
|
|
|
urls.url(r'^customers/(?P<pk>\d+)/trashed-projects/$', CustomerProfileTrashedProjectsView.as_view(), |
|
|
|
|