diff options
Diffstat (limited to 'tbc/views.py')
-rwxr-xr-x | tbc/views.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tbc/views.py b/tbc/views.py index e3953d8..c352ed7 100755 --- a/tbc/views.py +++ b/tbc/views.py @@ -59,6 +59,10 @@ def AboutPytbc(request): return render_to_response('tbc/about-pytbc.html', context) +def TemporarilyUnavailable(request): + context = {} + return render_to_response('tbc/unavailable.html', context) + def Home(request): context = {} |