~widelands-dev/widelands-website/django_staticfiles

« back to all changes in this revision

Viewing changes to wlwebchat/views.py

  • Committer: Holger Rapp
  • Date: 2009-03-03 08:57:20 UTC
  • mto: (48.1.15 widelands)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: sirver@h566336-20090303085720-khrgwucvux95wpdw
Put dead ugly webchat back on page

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Create your views here.
 
2
from django.shortcuts import render_to_response
 
3
from django.template import RequestContext
 
4
 
 
5
def webchat(request):
 
6
    return render_to_response('wlwebchat/index.html', context_instance=RequestContext(request))
 
7