mirror of
https://github.com/r4sas/py-i2phosts
synced 2025-01-10 06:47:58 +00:00
9 lines
202 B
Python
9 lines
202 B
Python
from django.shortcuts import render_to_response
|
|
from web import settings
|
|
|
|
def index(request):
|
|
return render_to_response('index.html', {
|
|
'title': settings.SITE_NAME,
|
|
'domain': settings.DOMAIN,
|
|
})
|