annotate gpp/core/views.py @ 127:2d299909e074

Adding markdown help to comments and forums. Still need to add it to a few other places that use the markItUp editor.
author Brian Neal <bgneal@gmail.com>
date Mon, 16 Nov 2009 01:00:28 +0000
parents dbd703f7d63a
children ab7830b067b3
rev   line source
bgneal@127 1 """
bgneal@127 2 Views for the core application. These are mainly shared, common views
bgneal@127 3 used by multiple applications.
bgneal@127 4 """
bgneal@127 5 from django.shortcuts import render_to_response
bgneal@127 6 from django.template import RequestContext
bgneal@127 7 from django.contrib.auth.decorators import login_required
bgneal@127 8 from django.views.decorators.http import require_GET
bgneal@127 9
bgneal@127 10 @login_required
bgneal@127 11 @require_GET
bgneal@127 12 def markdown_help(request):
bgneal@127 13 """
bgneal@127 14 This view provides the Markdown help cheat sheet. It is expected
bgneal@127 15 to be called via AJAX.
bgneal@127 16 """
bgneal@127 17 return render_to_response('core/markdown_help.html')