This repository has been archived on 2024-01-13. You can view files and clone it, but cannot push or open issues or pull requests.
arka-mvp/index/views.py
2022-09-19 22:33:32 +03:00

14 lines
251 B
Python

from django.shortcuts import render
def index(request):
return render(request, 'index.html')
def test_page(request):
return render(request, 'test_page.html')
def user_agreement(request):
return render(request, 'user-agreement.html')