diff options
| author | fschildt <florian.schildt@protonmail.com> | 2025-10-17 14:00:16 +0200 | 
|---|---|---|
| committer | fschildt <florian.schildt@protonmail.com> | 2025-10-17 14:00:16 +0200 | 
| commit | d1e59579ca19454369d56a8c7525e109a86841e2 (patch) | |
| tree | 695f348acca3a32c97512685384da818a3ba5195 /apps/cultivation/views.py | |
first commit
Diffstat (limited to 'apps/cultivation/views.py')
| -rw-r--r-- | apps/cultivation/views.py | 17 | 
1 files changed, 17 insertions, 0 deletions
diff --git a/apps/cultivation/views.py b/apps/cultivation/views.py new file mode 100644 index 0000000..6db6307 --- /dev/null +++ b/apps/cultivation/views.py @@ -0,0 +1,17 @@ +from django.shortcuts import render + +def view_index(request): +    return render(request, 'cultivation/index.html', {'form': None}) + +def view_cardio(request): +    return render(request, 'cultivation/index.html', {'form': None}) + +def view_strength(request): +    return render(request, 'cultivation/index.html', {'form': None}) + +def view_flexibility(request): +    return render(request, 'cultivation/index.html', {'form': None}) + +def view_mind(request): +    return render(request, 'cultivation/index.html', {'form': None}) +  | 
