8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-09-19 20:53:09 +00:00
re2o/printer/urls.py

18 lines
411 B
Python
Raw Normal View History

2018-06-28 18:20:08 +00:00
# -*- 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"),
2018-10-25 23:18:13 +00:00
url(r'^print_job/(?P<printoperationid>[0-9]+)$', views.print_job, name='print-job')
2018-06-28 18:20:08 +00:00
]