kristofersxyz/karbs/views.py
Kristofers Solo e41a60963c Update KARBS
2022-11-28 00:48:32 +02:00

12 lines
305 B
Python

from django.shortcuts import render, redirect
def instructions(request):
"""Karbs Instruction"""
return render(request, "karbs/instructions.html", {"title": "Karbs Instructions"})
def karbs(request):
"""Karbs install script"""
return render(request, "karbs/karbs", {"title": "KARBS"})