Add a placeholder page, tbi.html, and a tbi view /tbi, that can be used to link to when a particular web feature isn't complete yet rather than leaving dead links.

This commit is contained in:
Greg Taylor 2007-07-30 15:23:42 +00:00
parent 6aab3a4145
commit 9db148f98c
5 changed files with 41 additions and 7 deletions

View file

@ -41,4 +41,17 @@ def page_index(request):
}
context_instance = RequestContext(request)
return render_to_response('index.html', pagevars, context_instance)
return render_to_response('index.html', pagevars, context_instance)
def to_be_implemented(request):
"""
A notice letting the user know that this particular feature hasn't been
implemented yet.
"""
pagevars = {
"page_title": "To Be Implemented...",
}
context_instance = RequestContext(request)
return render_to_response('tbi.html', pagevars, context_instance)