from django.urls import path from character import views app_name = "character" urlpatterns = [path("/", views.character_view, name="view")]