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:
parent
6aab3a4145
commit
9db148f98c
5 changed files with 41 additions and 7 deletions
|
|
@ -41,4 +41,17 @@ def page_index(request):
|
||||||
}
|
}
|
||||||
|
|
||||||
context_instance = RequestContext(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)
|
||||||
3
urls.py
3
urls.py
|
|
@ -18,6 +18,9 @@ urlpatterns = patterns('',
|
||||||
|
|
||||||
# News stuff
|
# News stuff
|
||||||
(r'^news/', include('apps.news.urls')),
|
(r'^news/', include('apps.news.urls')),
|
||||||
|
|
||||||
|
# Page place-holder for things that aren't implemented yet.
|
||||||
|
(r'^tbi/', 'apps.website.views.to_be_implemented'),
|
||||||
)
|
)
|
||||||
|
|
||||||
# If you'd like to serve media files via Django (strongly not recommended!),
|
# If you'd like to serve media files via Django (strongly not recommended!),
|
||||||
|
|
|
||||||
|
|
@ -45,18 +45,18 @@
|
||||||
|
|
||||||
<div class="headerLinks">
|
<div class="headerLinks">
|
||||||
<span class="doNotDisplay">Tools:</span>
|
<span class="doNotDisplay">Tools:</span>
|
||||||
<a href="/login">Log In «</a>
|
<a href="/tbi">Log In «</a>
|
||||||
<span class="doNotDisplay">|</span>
|
<span class="doNotDisplay">|</span>
|
||||||
<a href="/register">Register «</a>
|
<a href="/tbi">Register «</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="subHeader">
|
<div class="subHeader">
|
||||||
<span class="doNotDisplay">Navigation:</span>
|
<span class="doNotDisplay">Navigation:</span>
|
||||||
<a href="/">Home</a> |
|
<a href="/">Home</a> |
|
||||||
<a href="./index.html">About</a> |
|
<a href="/tbi">About</a> |
|
||||||
<a href="./index.html">Documentation</a> |
|
<a href="/tbi">Documentation</a> |
|
||||||
<a href="./index.html">Staff List</a> |
|
<a href="/tbi">Staff List</a> |
|
||||||
<a href="/admin/">Admin Interface</a>
|
<a href="/admin/">Admin Interface</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@
|
||||||
<p class="newsSummary">{{entry.body|truncatewords:20}}</p>
|
<p class="newsSummary">{{entry.body|truncatewords:20}}</p>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<div class="more"><a href="./index.html">More News »</a></div>
|
<div class="more"><a href="/tbi">More News »</a></div>
|
||||||
|
|
||||||
<p class="filler"><!-- Filler para to extend left vertical line --></p>
|
<p class="filler"><!-- Filler para to extend left vertical line --></p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
18
webtemplates/prosimii/tbi.html
Normal file
18
webtemplates/prosimii/tbi.html
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
{% extends "base.html" %}
|
||||||
|
|
||||||
|
{% block header_ext %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block sidebar %}
|
||||||
|
{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<h1 id="alt-layout">To Be Implemented...</h1>
|
||||||
|
<p>
|
||||||
|
This feature has yet to be implemented, but rest assured that it will be!
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
Eventually...
|
||||||
|
</p>
|
||||||
|
{% endblock %}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue