Skip to content

Instantly share code, notes, and snippets.

@dimiro1
Last active December 31, 2015 23:29
Show Gist options
  • Save dimiro1/8060547 to your computer and use it in GitHub Desktop.
Save dimiro1/8060547 to your computer and use it in GitHub Desktop.
from django.contrib import admin
from django.contrib.flatpages.models import FlatPage
class MyFlatPageAdmin(admin.ModelAdmin):
class Media:
js = ('1.js', '2.js',)
admin.site.unregister(FlatPage)
admin.site.register(FlatPage, MyFlatPageAdmin)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment