First commite
This commit is contained in:
10
cv/urls.py
Normal file
10
cv/urls.py
Normal 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"),
|
||||
]
|
||||
Reference in New Issue
Block a user