14 lines
397 B
Python
14 lines
397 B
Python
"""Маршруты приложения `cv`."""
|
|
|
|
from django.urls import path
|
|
|
|
from .views import DownloadDocxView, DownloadPdfView, ProfileView
|
|
|
|
app_name = "cv"
|
|
|
|
urlpatterns = [
|
|
path("", ProfileView.as_view(), name="profile"),
|
|
path("download/resume.docx", DownloadDocxView.as_view(), name="resume-docx"),
|
|
path("download/resume.pdf", DownloadPdfView.as_view(), name="resume-pdf"),
|
|
]
|