You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
piomint/web/views.py

12 lines
404 B

from django.shortcuts import render, HttpResponse
# Create your views here.
def index(request):
return HttpResponse('''
<h1>INDEX WEB</h1>
</br>
<a href="app/install">Installieren</a>
</br>
</br>
<a href="app/">App Öffnen</a>
''')

Powered by TurnKey Linux.