mirror of
https://github.com/kristoferssolo/kristofersxyz.git
synced 2025-10-21 18:30:34 +00:00
12 lines
308 B
Python
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'})
|