Skip to main content

Content management system: Pages is a list of (ordered) block and relevant content. Though to allow inline i18n content management, with high performance usage.

Project description

============================= django-stack-it

.. image:: https://api.codacy.com/project/badge/Grade/4c1f910320434a5fb2fb828ebfcbaf95 :alt: Codacy Badge :target: https://app.codacy.com/app/Jufik/django_stack_it?utm_source=github.com&utm_medium=referral&utm_content=VingtCinq/django_stack_it&utm_campaign=Badge_Grade_Dashboard

.. image:: https://badge.fury.io/py/django-stack-it.svg :target: https://badge.fury.io/py/django-stack-it

.. image:: https://api.codacy.com/project/badge/Coverage/a842b7f950cd465d91d6b06c7d56ce16
:target: https://www.codacy.com/app/Jufik/django_stack_it?utm_source=github.com&utm_medium=referral&utm_content=VingtCinq/django_stack_it&utm_campaign=Badge_Coverage

.. image:: https://travis-ci.org/VingtCinq/django_stack_it.svg?branch=master :target: https://travis-ci.org/VingtCinq/django_stack_it

Content management system under development

Quickstart

Install django-stack-it::

pip install django-stack-it

Django Stack It relies on several dependencies, you need to add to your INSTALLED_APPS

.. code-block:: python

INSTALLED_APPS = (
    ...
    'polymorphic_tree',
    'polymorphic',
    'mptt',
    'imagekit',
    'stack_it'
    ...
)

Add django-stack-it's URL patterns:

.. code-block:: python urlpatterns = [ ... path(r'^', include('stack_it.urls')), ... ]

To avoid migration messup, we strongly recomend you to deport Stack It migrations to your project. This will avoid any unexpected conflict between environements, due to language addition/deletion. In your settings:

.. code-block:: python MIGRATION_MODULES = { "stack_it":"tests.migrations" }

Basic Usage

As soon as you a model is linked to a URL, it should inherit from the Page model.

.. code-block:: python from stack_it.models import Page

class Article(Page):
    """
    Your model here
    """
    ....

Article is now considered to be a Page. It comes with several usefull fields like title, slug dans template_path.

Register your model to the admin the way you want, and you can see all your website organization within one unified admin doing:

.. code-block:: python from stack_it.admin import PageAdmin as BasePageAdmin from stack_it.models import Page from blog.models import Article

class PageAdmin(BasePageAdmin):
    base_model = Page
    child_models = (
        ...Your inherited model here,
        Article,
        ...
    )
 admin.site.register(Page, PageAdmin)

Article or any other model won't show up in the admin anymore. Each model and model instances will be managed from the "Page" admin, where all your pages are organized in a Drag n Drop interface to build up your site structure.

If you want your model's to be registered as usual, add show_in_index = True in your admin class to allow

Features

  • TODO

Running Tests

Does the code actually work?

::

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

  • Cookiecutter_
  • cookiecutter-djangopackage_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter .. _cookiecutter-djangopackage: https://github.com/pydanny/cookiecutter-djangopackage

History

0.1.0 (2019-01-14) ++++++++++++++++++

  • First release on PyPI.

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

django_stack_it_bak-0.1.13.2.tar.gz (70.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_stack_it_bak-0.1.13.2-py2.py3-none-any.whl (86.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file django_stack_it_bak-0.1.13.2.tar.gz.

File metadata

  • Download URL: django_stack_it_bak-0.1.13.2.tar.gz
  • Upload date:
  • Size: 70.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.10

File hashes

Hashes for django_stack_it_bak-0.1.13.2.tar.gz
Algorithm Hash digest
SHA256 78a46e847453b02e49f3d73720ce22e3b3c765fd85337be230c5130b5670797e
MD5 0b305aba76ca64901cd8b40c878c74fa
BLAKE2b-256 df07012eb6e1f2e56aa00e82fbf9626172fc554c3a6abbfa43d4d1756724389b

See more details on using hashes here.

File details

Details for the file django_stack_it_bak-0.1.13.2-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_stack_it_bak-0.1.13.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 e6c3862aa5d4068cb6377c6ebd30e7c270218b55f7f54e9e5f5e450b3d50c4bb
MD5 89a7f49b21a6879a86a7280d23267559
BLAKE2b-256 86558e8b696caa197df5e6f15d4b300807e7c429ef86ec6307aab411019b5a11

See more details on using hashes here.

Supported by

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