mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-14 10:13:21 +00:00
11 lines
335 B
Python
11 lines
335 B
Python
from django.shortcuts import render, redirect, get_object_or_404
|
|
from django.http import HttpResponse
|
|
from django.db import models
|
|
|
|
def index(request, context=None):
|
|
if context == None:
|
|
return render(request, "core/index.html", {'title': 'Bienvenue!'})
|
|
else:
|
|
return render(request, "core/index.html", context)
|
|
|