kristofersxyz/karbs/views.py
2022-08-06 19:12:17 +03:00

12 lines
308 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.sh', {'title': 'KARBS'})