med/users/urls.py

13 lines
286 B
Python
Raw Normal View History

2019-08-02 12:57:53 +00:00
# -*- mode: python; coding: utf-8 -*-
# Copyright (C) 2017-2019 by BDE ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from django.conf.urls import url
from . import views
2017-06-23 18:09:50 +00:00
app_name = 'users'
urlpatterns = [
2019-08-08 14:18:15 +00:00
url(r'^edit_info/$', views.edit_info, name='edit-info'),
]