mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-18 07:24:00 +01:00
8 lines
216 B
Python
8 lines
216 B
Python
from django.contrib.auth.decorators import login_required
|
|
from django.shortcuts import render
|
|
|
|
|
|
@login_required
|
|
def unit_price_calculator(request):
|
|
return render(request, "mini_tools/unit_price_calculator.html")
|