6 lines
170 B
Python
6 lines
170 B
Python
from django.http import HttpResponse
|
|
from django.shortcuts import render
|
|
|
|
|
|
def profile(request):
|
|
render(request, "profile.html", {"username": request.user.username})
|