Add profile form in matmat

This commit is contained in:
Skia
2017-05-10 21:59:22 +02:00
parent e00c948da9
commit dec1a2cdd7
3 changed files with 21 additions and 0 deletions

View File

@ -34,5 +34,6 @@ urlpatterns = [
url(r'^(?P<user_id>[0-9]+)/new_comment$', MatmatCommentCreateView.as_view(), name='new_comment'),
url(r'^comment/(?P<comment_id>[0-9]+)/edit$', MatmatCommentEditView.as_view(), name='edit_comment'),
url(r'^tools$', UserMatmatToolsView.as_view(), name='user_tools'),
url(r'^profile$', UserMatmatEditProfileView.as_view(), name='profile'),
]