All checks were successful
Deploy Quartz site to GitHub Pages / build (push) Successful in 2m29s
8 lines
167 B
Python
8 lines
167 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def upload_files_page(request):
|
|
"""Render the file upload interface"""
|
|
return render(request, 'file/upload_files.html')
|
|
|