Give the comments admin page custom css.
[matthijs/projects/xerxes.git] / influences / admin.py
1 from django.contrib import admin
2 from django.contrib.admin.util import unquote
3 from django.shortcuts import get_object_or_404, render_to_response
4 from django.template import RequestContext
5 from xerxes.influences.models import Character, Influence
6 from django.contrib.contenttypes import generic
7 from threadedcomments.models import ThreadedComment
8 from django.utils.safestring import mark_safe
9 from django.utils.translation import ugettext as _
10 from django.utils.encoding import force_unicode
11
12 class CharacterAdmin(admin.ModelAdmin):
13     list_filter=('status', 'player')
14     search_fields=('name',)
15     list_display=('player', 'name', 'status') 
16
17 admin.site.register(Character, CharacterAdmin)
18
19 class InfluenceAdmin(admin.ModelAdmin):
20     list_filter=('character', 'status', 'longterm')
21     search_fields=('character', 'summary', 'description', 'contact')
22     list_display=('character', 'contact', 'summary', 'longterm', 'status') 
23
24     class Media:
25         js = ('base/js/yahoo-dom-event.js', 'base/js/logger-debug.js')
26         css = {'all' : ('base/css/admin.css',)}
27
28     def __call__(self, request, url):
29         if (url and url.endswith('/comments')):
30             return self.comments_view(request, unquote(url[:-9]))
31         else:
32             return super(InfluenceAdmin, self).__call__(request, url)
33     
34     def comments_view(self, request, object_id):
35         model = self.model
36         opts = model._meta
37         obj = get_object_or_404(model, pk=object_id)
38
39         comments = obj.get_comments(private=True)
40
41         context = {
42             'title'         : _('Commentaar: %s') % force_unicode(obj),
43             'root_path'     : self.admin_site.root_path,
44             'app_label'     : self.model._meta.app_label,
45             'object'        : obj,
46             'opts'          : opts,
47             'comments'      : comments,
48             'media'         : mark_safe(self.media),
49         }
50         return render_to_response('admin/influences/influence/comments.html', context, RequestContext(request))
51         
52 admin.site.register(Influence, InfluenceAdmin)