1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-02-06 14:53:03 +00:00
med/media/urls.py

14 lines
330 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
2017-06-30 03:25:07 +02:00
from django.conf.urls import url
from . import views
2019-08-10 10:44:17 +02:00
app_name = 'media'
2017-06-30 03:25:07 +02:00
urlpatterns = [
2019-08-08 16:33:05 +02:00
url(r'^retour_emprunt/(?P<empruntid>[0-9]+)$', views.retour_emprunt,
name='retour-emprunt'),
2017-06-30 03:25:07 +02:00
]