from django.urls import path from design_template import views from django.shortcuts import redirect app_name = "design" urlpatterns = [ path("", views.upload, name="settings"), path("logo.png", lambda _ : redirect('SharixAdmin/img/logo.png', permanent=True)), path("colors", views.change_colors, name="colors"), ]