X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=influences%2Fviews.py;h=1025efa2e8ea6a5cbb5dff4d12bf610c00a94a1f;hb=ceafe55f5acae09c6f51b72881a3d564bfe730fa;hp=e1ec516a5ca30f024aae289ac8dd4c92dd54356e;hpb=06863704f30a2025ee82fd89a41716f5ab2cce87;p=matthijs%2Fprojects%2Fxerxes.git diff --git a/influences/views.py b/influences/views.py index e1ec516..1025efa 100644 --- a/influences/views.py +++ b/influences/views.py @@ -10,7 +10,7 @@ from django.core.urlresolvers import reverse from django.http import HttpResponseRedirect, HttpResponseForbidden from django.views.generic.list_detail import object_detail, object_list from threadedcomments.models import ThreadedComment -from threadedcomments.views import free_comment +from threadedcomments.views import free_comment, _preview from xerxes.influences.models import Character from xerxes.influences.models import Influence from forms import get_influence_comment_form, InfluenceForm, CharacterForm @@ -89,6 +89,15 @@ def influence_list(request): os = Influence.objects.filter(character__player=request.user) return render_to_response('influences/influence_list.html', {'object_list' : os}, RequestContext(request)) +def influence_comment_preview(request, context_processors, extra_context, **kwargs): + # Use a custom template + kwargs['template'] = 'influences/influence_comment_preview.html' + # The base template to extend + extra_context['base'] = "influences/influence_detail.html" + # The object to be show in the influence detail + extra_context['object'] = get_object_or_404(Influence, pk=kwargs['object_id']) + return _preview(request, context_processors, extra_context, **kwargs) + @login_required def influence_detail(request, object_id): @@ -109,7 +118,8 @@ def influence_detail(request, object_id): return render_to_response('influences/influence_detail.html', context, RequestContext(request)) @login_required -def influence_comment(request, edit_id=None, *args, **kwargs): +def influence_comment(request, object_id, edit_id=None): + kwargs = {} # Add the content_type, since we don't put in in the url explicitly kwargs['content_type'] = ContentType.objects.get_for_model(Influence).id # Find the comment to which we're replying, so we can get the right form for it. @@ -117,12 +127,17 @@ def influence_comment(request, edit_id=None, *args, **kwargs): reply_to = get_object_or_404(ThreadedComment, id=edit_id) else: reply_to = None + # Find the right form class kwargs['form_class'] = get_influence_comment_form(request.user.is_staff, reply_to) # Override the model, so we don't get a free comment, but a normal # one. We can't use threadedcomments' comment view for that, since # that hardcodes the form_class. kwargs['model'] = ThreadedComment - return free_comment(request, edit_id=edit_id, *args, **kwargs) + # Set a custom preview view + kwargs['preview'] = influence_comment_preview + if parent_id: + kwargs['prefix'] = "reply-to-%s" % (parent_id) + return free_comment(request, object_id=object_id, edit_id=edit_id, **kwargs) # vim: set sts=4 sw=4 expandtab: