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