Files @ 8afa17b1c172
Branch filter:

Location: symposion_app/symposion/cms/admin.py

Steve Holden
Update symposion/templates/sponsorship/_sponsor_link.html

Improved reference format and used pk rather than id
- thanks to trbs for the suggestion
from django.contrib import admin

import reversion

from .models import Page

class PageAdmin(reversion.VersionAdmin):

    pass


admin.site.register(Page, PageAdmin)