First commite

This commit is contained in:
Pavel Sobolev
2025-11-12 23:49:00 +03:00
commit c4bb087aaf
28 changed files with 2090 additions and 0 deletions

10
cv/urls.py Normal file
View File

@@ -0,0 +1,10 @@
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"),
]