view weblinks/admin.py @ 693:ad69236e8501

For issue #52, update many 3rd party Javascript libraries. Updated to jquery 1.10.2, jquery ui 1.10.3. This broke a lot of stuff. - Found a newer version of the jquery cycle all plugin (3.0.3). - Updated JPlayer to 2.4.0. - Updated to MarkItUp 1.1.14. This also required me to add multiline attributes set to true on various buttons in the markdown set. - As per a stackoverflow post, added some code to get multiline titles in a jQuery UI dialog. They removed that functionality but allow you to put it back. Tweaked the MarkItUp preview CSS to show blockquotes in italic. Did not update TinyMCE at this time. I'm not using the JQuery version and this version appears to work ok for now. What I should do is make a repo for MarkItUp and do a vendor branch thing so I don't have to futz around diffing directories to figure out if I'll lose changes when I update.
author Brian Neal <bgneal@gmail.com>
date Wed, 04 Sep 2013 19:55:20 -0500
parents 6e6492468bb8
children
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()

        count = len(qs)
        msg = "1 link" if count == 1 else "%d links" % count
        self.message_user(request, "%s approved." % msg)

    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']

    actions = ['hide_links']

    def hide_links(self, request, qs):
        for flagged_link in qs:
            flagged_link.link.is_public = False
            flagged_link.link.save()

        count = len(qs)
        qs.delete()
        msg = "1 link" if count == 1 else "%d links" % count
        self.message_user(request, "%s hidden." % msg)

    hide_links.short_description = "Accept flags & hide links"


admin.site.register(Category, CategoryAdmin)
admin.site.register(PendingLink, PendingLinkAdmin)
admin.site.register(Link, LinkAdmin)
admin.site.register(FlaggedLink, FlaggedLinkAdmin)