Example #1
0
def error_404(request):
    return render(request, 'errors/404.html', {'is_admin_panel': static.is_admin_panel(request)})
Example #2
0
def index(request):
    return render(request, 'site/index.html', {'is_admin_panel': static.is_admin_panel(request)})
Example #3
0
def company(request):
    return render(request, 'site/company.html', {'is_admin_panel': static.is_admin_panel(request)})