mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 17:36:27 +00:00
18 lines
378 B
Python
18 lines
378 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
"""printer.urls
|
||
|
The defined URLs for the printer app
|
||
|
Author : Maxime Bombar <bombar@crans.org>.
|
||
|
Date : 29/06/2018
|
||
|
"""
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.conf.urls import url
|
||
|
|
||
|
import re2o
|
||
|
from . import views
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^new_job/$', views.new_job, name="new-job"),
|
||
|
url(r'^success/$', views.success, name="success"),
|
||
|
]
|