blob: e7d17e91d22b0d66b2c895227c49412b37bac1a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# -*- coding: utf-8 -*-
from django.http import HttpResponse, HttpResponseRedirect
from django.conf import settings
from django.shortcuts import render
# profile home {{{
def profile_view(request, username):
"""
show profile of given user
"""
return HttpResponse('Hi, %s' % username)
# }}}
|