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.

16 lines
332 B
Python

# coding: utf-8
# Author: Grizzly
#
# Views for litl.
from django.shortcuts import render
from .settings import TEMPLATES
def index(request):
"""Display the home page of the site.
TODO: Search and display the urls shortened by the user in the past.
"""
context = {}
return render(request,'base.html',context)