Skip to main content

Wagtail workspace page for every registred user.

Project description

Wagtail User Workspace

This app creates personal workspace page for every user on registration.

Users are able to publish new child pages under their workspace page. This includes minimal needed permissions to do so. Namely access to Wagtail admin and add, edit and publish permissions to their own workspace page.

Structure and type of these pages is highly customisable.

Quick start

  1. Install "wagtail-user-workspace" using pip

    $ pip install wagtail-user-workspace
    
  2. Add "wagtail_user_workspace" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...,
        "wagtail_user_workspace",
    ]
    
  3. Define model for root page that will contain all of the user workspace pages:

    from wagtail.models import Page
    from wagtail_user_workspace.models import WorkspacePageBase    
    
    # This page will be used as a root for each users workspace
    class CustomWebPage(Page):
        ...        
    
    # This page serves as a root page for all the workspace pages
    # Type of these pages is determined by page model defined in subpage_types
    class UserWorkspacesRootPage(WorkspacePageBase, Page):
        ...
        subpage_types = [
            'your_app.CustomWebPage',
        ]
        ...
    

    Valid workspaces root page rules:

    • Page models that subclass WorkspacePageBase also has to subclass wagtail.models.Page. Any other model that subclasses wagtail.models.Page can do as well.
    • Subclasses of WorkspacePageBase has to have exactly one page model defined in subpage_types. This also has to be a subclass of wagtail.models.Page.
  4. Configure workspace page model:

    USER_WORKSPACE_PAGE_MODEL = "your_app.UserWorkspacesRootPage"
    
  5. Make and apply database migrations with new changes:

    $ python manage.py makemigrations
    $ python manage.py migrate
    
  6. Now start your web, navigate to the Wagtail admin interface and create root page for user workspaces:

  7. After some user signs in, new workspace page will be generated for him. User has a full controll over this page. He can edit, publish, and even delete it. If defenition of CustomWebPage alows it, he can even add subpages.

Development

To develop this app locally you can just clone this repo. Then run local server by running

$ python manage.py runserver

or when using VSCode just hit F5 or another Run key. VSCode will use settings from launch.json

Then you can start developing this app!

Testing

You can run tests like that:

$ python manage.py test

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

wagtail-user-workspace-0.1.0.dev0.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file wagtail-user-workspace-0.1.0.dev0.tar.gz.

File metadata

File hashes

Hashes for wagtail-user-workspace-0.1.0.dev0.tar.gz
Algorithm Hash digest
SHA256 7bf1ec6d09bef31f2d3e53cc7f99d5c773fd4ded6da605329f747c681c188e12
MD5 1aa5c347b45babbb86a46095e68df9cc
BLAKE2b-256 b6f752448d9267e0b0c15ebd2b82edc94c60b53b302c20ea6a8eb95221220b2b

See more details on using hashes here.

File details

Details for the file wagtail_user_workspace-0.1.0.dev0-py3-none-any.whl.

File metadata

File hashes

Hashes for wagtail_user_workspace-0.1.0.dev0-py3-none-any.whl
Algorithm Hash digest
SHA256 605e72f0999ce208ed46ff6f4a63202675989fe835b88a32bdcdc176553cd35b
MD5 809a4225bbbc17cff77ee941fd5362b7
BLAKE2b-256 9628ea62b3a088139dbd9a3427f7f96acff88509e6b0b1e8726816e023b3fcee

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page