Skip to content
This repository has been archived by the owner on Aug 5, 2020. It is now read-only.

littlepea/cmsplugin-team

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django CMS team plugin

Django CMS plugin to list team members/employees.

Installation

  1. Install with pip:

    pip install cmsplugin-team
  2. Add filer and cmsplugin_team to your INSTALLED_APPS in `settings.py`:

    INSTALLED_APPS = (
        ...
        # Imperavi (or tinymce) rich text editor is optional
        'imperavi',
        'filer',
        'cmsplugin_team',
    )
  3. Install and configure your preferred rich text widget (optional).

Known to work are django-imperavi as well as for django-tinymce. Be sure to follow installation instructions for respective editors.

For django-imperavi:

# install
pip install django-imperavi

# settings.py
INSTALLED_APPS = (
    ...
    'imperavi',
)

# urls.py
url(r'^imperavi/', include('imperavi.urls')),

For django-tinymce:

# install
pip install django-tinymce

# settings.py
INSTALLED_APPS = (
    ...
    'tinymce',
)

# urls.py
url(r'^tinymce/', include('tinymce.urls')),

Example

image

About

Django CMS plugin to list team members/employees.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published