1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-02-06 10:13:01 +00:00
med/media/urls.py
2020-09-25 10:27:43 +02:00

16 lines
410 B
Python

# -*- 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 django.urls import path
from . import views
app_name = 'media'
urlpatterns = [
url(r'^retour_emprunt/(?P<empruntid>[0-9]+)$', views.retour_emprunt,
name='retour-emprunt'),
path('find/', views.FindMediumView.as_view()),
]