You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
210 B
Python
8 lines
210 B
Python
6 years ago
|
from django.shortcuts import get_object_or_404, render
|
||
|
from users.models import User
|
||
|
|
||
|
|
||
|
def index(request):
|
||
|
user = get_object_or_404(User, pk=1)
|
||
|
return render(request, 'home/index.html', {'user': user})
|