Django_portfolio/projects/views.py

6 lines
140 B
Python
Raw Normal View History

2022-01-02 17:20:08 +01:00
from django.shortcuts import render
# Create your views here.
2022-01-02 17:54:34 +01:00
def project_list(request):
2022-01-02 18:10:23 +01:00
return render(request, "projects/index.html")