Mercurial > public > sg101
view gpp/weblinks/admin.py @ 318:c550933ff5b6
Fix a bug where you'd get an error when trying to delete a forum thread (topic does not exist). Apparently when you call topic.delete() the posts would get deleted, but the signal handler for each one would run, and it would try to update the topic's post count or something, but the topic was gone? Reworked the code a bit and explicitly delete the posts first. I also added a sync() call on the parent forum since post counts were not getting adjusted.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 05 Feb 2011 21:46:52 +0000 |
parents | d424b8bae71d |
children | 701730b2fcda |
line wrap: on
line source
"""This file contains the automatic admin site definitions for the weblinks models""" import datetime from django.contrib import admin from weblinks.models import Category from weblinks.models import PendingLink from weblinks.models import Link from weblinks.models import FlaggedLink class CategoryAdmin(admin.ModelAdmin): list_display = ('title', 'slug', 'description', 'count') prepopulated_fields = {'slug': ('title', )} readonly_fields = ('count', ) class PendingLinkAdmin(admin.ModelAdmin): list_display = ('title', 'url', 'user', 'category', 'date_added') raw_id_fields = ('user', ) actions = ('approve_links', ) readonly_fields = ('update_date', ) def approve_links(self, request, qs): for pending_link in qs: link = Link(category=pending_link.category, title=pending_link.title, url=pending_link.url, description=pending_link.description, user=pending_link.user, date_added=datetime.datetime.now(), hits=0, is_public=True) link.save() pending_link.delete() approve_links.short_description = "Approve selected links" class LinkAdmin(admin.ModelAdmin): list_display = ('title', 'url', 'category', 'date_added', 'hits', 'is_public') list_filter = ('date_added', 'is_public', 'category') date_hierarchy = 'date_added' ordering = ('-date_added', ) search_fields = ('title', 'description', 'url', 'user__username') raw_id_fields = ('user', ) readonly_fields = ('update_date', ) save_on_top = True class FlaggedLinkAdmin(admin.ModelAdmin): list_display = ('__unicode__', 'url', 'get_link_url', 'user', 'date_flagged') date_hierarchy = 'date_flagged' raw_id_fields = ('user', ) admin.site.register(Category, CategoryAdmin) admin.site.register(PendingLink, PendingLinkAdmin) admin.site.register(Link, LinkAdmin) admin.site.register(FlaggedLink, FlaggedLinkAdmin)