Skip to content

lhongjum/djangocms-pageadmin

 
 

Repository files navigation

djangocms-pageadmin

Requirements

django CMS Page Admin requires that you have a django CMS 4.0 (or higher) project already running and set up.

Installation

Run:

pip install djangocms-pageadmin

Add djangocms_pageadmin to your project's INSTALLED_APPS. It should appear after cms app in order to override the default PageContent admin class.

Development

Extending PageAdmin

If you need to extend the pageadmin further you can do that in the following way.

# admin.py from django.contrib import admin from djangocms_pageadmin.admin import PageContentAdmin

class CustomPageContentAdmin(PageContentAdmin):

# your changes here pass

admin.site.unregister(PageContent) admin.site.register(PageContent, CustomPageContentAdmin)

Running Tests

You can run the tests by executing:

python -m venv venv source venv/bin/activate python setup.py test

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 78.7%
  • HTML 8.8%
  • JavaScript 8.3%
  • CSS 4.0%
  • Dockerfile 0.2%