Files
resume/cv/urls.py
Pavel Sobolev c4bb087aaf First commite
2025-11-12 23:49:00 +03:00

10 lines
344 B
Python

from django.urls import path
from .views import ProfileView, DownloadDocxView, DownloadPdfView
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"),
]