mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-18 15:34:01 +01:00
12 lines
201 B
Python
12 lines
201 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path(
|
|
"tools/unit-price-calculator/",
|
|
views.unit_price_calculator,
|
|
name="unit_price_calculator",
|
|
),
|
|
]
|