1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-02-06 10:13:01 +00:00
med/users/urls.py

13 lines
286 B
Python
Raw Normal View History

2019-08-02 14:57:53 +02: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 20:09:50 +02:00
app_name = 'users'
urlpatterns = [
2019-08-08 16:18:15 +02:00
url(r'^edit_info/$', views.edit_info, name='edit-info'),
]