10 lines
344 B
Python
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"),
|
|
] |