├── .coveragerc ├── .github └── workflows │ └── tests.yaml ├── .gitignore ├── .tx └── config ├── AUTHORS ├── CHANGES.rst ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── _ext │ └── djangodummy │ │ ├── __init__.py │ │ ├── requirements.txt │ │ ├── settings.py │ │ └── templates │ │ └── .gitignore ├── api │ ├── adminui.rst │ ├── adminui.utils.rst │ ├── extensions.rst │ ├── index.rst │ ├── integration │ │ └── fluent_contents.rst │ ├── models.navigation.rst │ ├── models.rst │ ├── pagetypes.fluentpage.admin.rst │ ├── pagetypes.fluentpage.models.rst │ ├── sitemaps.rst │ ├── templatetags │ │ ├── appurl_tags.rst │ │ └── fluent_pages_tags.rst │ ├── urlresolvers.rst │ └── views.rst ├── changelog.rst ├── conf.py ├── configuration.rst ├── dependencies.rst ├── images │ ├── newpagetypes │ │ ├── shoppage-add.png │ │ └── shoppage-admin.png │ └── pagetypes │ │ ├── flatpage-admin.png │ │ ├── fluentpage-admin.png │ │ ├── redirectnode-admin.png │ │ └── textfile-admin.png ├── index.rst ├── lowlevel.rst ├── make.bat ├── management.rst ├── multilingual.rst ├── newpagetypes │ ├── admin.rst │ ├── fluent_contents.rst │ ├── index.rst │ ├── models.rst │ ├── rendering.rst │ └── urls.rst ├── pagetypes │ ├── flatpage.rst │ ├── fluentpage.rst │ ├── index.rst │ ├── others.rst │ ├── redirectnode.rst │ └── textfile.rst ├── quickstart.rst ├── sitemaps.rst └── templatetags.rst ├── example ├── README.rst ├── __init__.py ├── fixtures │ ├── create.sh │ ├── shop_example.json │ └── welcome.json ├── manage.py ├── requirements.txt ├── settings.py ├── simpleshop │ ├── __init__.py │ ├── admin.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── page_type_plugins.py │ ├── templates │ │ └── products │ │ │ ├── product_details.html │ │ │ └── productcategorypage.html │ └── views.py ├── theme1 │ ├── __init__.py │ ├── static │ │ └── theme1 │ │ │ └── site.css │ └── templates │ │ └── theme1 │ │ ├── base.html │ │ ├── pages │ │ ├── standard-twocols.html │ │ └── standard.html │ │ └── parts │ │ └── sidebar.html └── urls.py ├── fluent_pages ├── __init__.py ├── admin │ ├── __init__.py │ └── utils.py ├── adminui │ ├── __init__.py │ ├── htmlpageadmin.py │ ├── overrides.py │ ├── pageadmin.py │ ├── pagelayoutadmin.py │ ├── urlnodechildadmin.py │ ├── urlnodeparentadmin.py │ └── utils.py ├── apps.py ├── appsettings.py ├── extensions │ ├── __init__.py │ ├── pagetypebase.py │ └── pagetypepool.py ├── forms │ ├── __init__.py │ └── fields.py ├── integration │ ├── __init__.py │ └── fluent_contents │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── models.py │ │ ├── page_type_plugins.py │ │ └── tests.py ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── nl │ │ └── LC_MESSAGES │ │ └── django.po ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── make_language_redirects.py │ │ ├── rebuild_page_tree.py │ │ └── remove_stale_pages.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_add_htmlpage_meta_image.py │ ├── 0003_set_htmlpage_defaults.py │ ├── 0004_add_htmlpage_not_null.py │ ├── 0005_author_on_delete_set_null.py │ ├── 0006_remove_mptt_indices.py │ ├── 0007_use_parler_transactionsfk.py │ └── __init__.py ├── models │ ├── __init__.py │ ├── db.py │ ├── fields.py │ ├── managers.py │ ├── navigation.py │ └── utils.py ├── pagetypes │ ├── __init__.py │ ├── flatpage │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── appsettings.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── page_type_plugins.py │ │ ├── templates │ │ │ ├── admin │ │ │ │ └── fluent_pages │ │ │ │ │ └── pagetypes │ │ │ │ │ └── flatpage │ │ │ │ │ └── change_form.html │ │ │ └── fluent_pages │ │ │ │ └── pagetypes │ │ │ │ └── flatpage │ │ │ │ └── default.html │ │ └── tests.py │ ├── fluentpage │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── page_type_plugins.py │ │ ├── static │ │ │ └── fluent_pages │ │ │ │ └── fluentpage │ │ │ │ └── fluent_layouts.js │ │ ├── templates │ │ │ └── admin │ │ │ │ └── fluentpage │ │ │ │ └── change_form.html │ │ ├── tests.py │ │ └── widgets.py │ ├── redirectnode │ │ ├── __init__.py │ │ ├── admin.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── page_type_plugins.py │ │ └── tests.py │ └── textfile │ │ ├── __init__.py │ │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_add_translation_model.py │ │ ├── 0003_migrate_translatable_fields.py │ │ ├── 0004_remove_untranslated_fields.py │ │ └── __init__.py │ │ ├── models.py │ │ ├── page_type_plugins.py │ │ └── tests.py ├── sitemaps.py ├── static │ └── fluent_pages │ │ └── admin │ │ └── pagetree.css ├── templates │ ├── admin │ │ └── fluent_pages │ │ │ ├── integration │ │ │ └── fluent_contents │ │ │ │ └── base_change_form.html │ │ │ └── page │ │ │ ├── base_change_form.html │ │ │ ├── change_form.html │ │ │ └── change_list.html │ ├── fluent_pages │ │ ├── base.html │ │ ├── example-base.html │ │ ├── example-cmspage.html │ │ ├── intro_page.html │ │ └── parts │ │ │ ├── breadcrumb.html │ │ │ └── menu.html │ └── robots.txt ├── templatetags │ ├── __init__.py │ ├── appurl_tags.py │ └── fluent_pages_tags.py ├── tests │ ├── __init__.py │ ├── test_admin.py │ ├── test_forms.py │ ├── test_menu.py │ ├── test_modeldata.py │ ├── test_plugins.py │ ├── test_templatetags.py │ ├── test_urldispatcher.py │ ├── testapp │ │ ├── __init__.py │ │ ├── migrations │ │ │ ├── 0001_initial.py │ │ │ └── __init__.py │ │ ├── models.py │ │ ├── page_type_plugins.py │ │ ├── templates │ │ │ ├── 404.html │ │ │ └── testapp │ │ │ │ ├── base.html │ │ │ │ ├── json_menu.html │ │ │ │ └── simpletextpage.html │ │ ├── urls.py │ │ ├── urls_nonroot.py │ │ └── urls_webshop.py │ └── utils.py ├── urlresolvers.py ├── urls.py └── views │ ├── __init__.py │ ├── dispatcher.py │ ├── mixins.py │ └── seo.py ├── makemessages.py ├── pyproject.toml ├── runtests.py ├── setup.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source = fluent_pages/ 3 | omit = 4 | */migrations/* 5 | -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/.gitignore -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/.tx/config -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/LICENSE.rst -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_ext/djangodummy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_ext/djangodummy/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/_ext/djangodummy/requirements.txt -------------------------------------------------------------------------------- /docs/_ext/djangodummy/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/_ext/djangodummy/settings.py -------------------------------------------------------------------------------- /docs/_ext/djangodummy/templates/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/api/adminui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/adminui.rst -------------------------------------------------------------------------------- /docs/api/adminui.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/adminui.utils.rst -------------------------------------------------------------------------------- /docs/api/extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/extensions.rst -------------------------------------------------------------------------------- /docs/api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/index.rst -------------------------------------------------------------------------------- /docs/api/integration/fluent_contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/integration/fluent_contents.rst -------------------------------------------------------------------------------- /docs/api/models.navigation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/models.navigation.rst -------------------------------------------------------------------------------- /docs/api/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/models.rst -------------------------------------------------------------------------------- /docs/api/pagetypes.fluentpage.admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/pagetypes.fluentpage.admin.rst -------------------------------------------------------------------------------- /docs/api/pagetypes.fluentpage.models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/pagetypes.fluentpage.models.rst -------------------------------------------------------------------------------- /docs/api/sitemaps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/sitemaps.rst -------------------------------------------------------------------------------- /docs/api/templatetags/appurl_tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/templatetags/appurl_tags.rst -------------------------------------------------------------------------------- /docs/api/templatetags/fluent_pages_tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/templatetags/fluent_pages_tags.rst -------------------------------------------------------------------------------- /docs/api/urlresolvers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/urlresolvers.rst -------------------------------------------------------------------------------- /docs/api/views.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/api/views.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGES.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/configuration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/configuration.rst -------------------------------------------------------------------------------- /docs/dependencies.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/dependencies.rst -------------------------------------------------------------------------------- /docs/images/newpagetypes/shoppage-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/images/newpagetypes/shoppage-add.png -------------------------------------------------------------------------------- /docs/images/newpagetypes/shoppage-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/images/newpagetypes/shoppage-admin.png -------------------------------------------------------------------------------- /docs/images/pagetypes/flatpage-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/images/pagetypes/flatpage-admin.png -------------------------------------------------------------------------------- /docs/images/pagetypes/fluentpage-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/images/pagetypes/fluentpage-admin.png -------------------------------------------------------------------------------- /docs/images/pagetypes/redirectnode-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/images/pagetypes/redirectnode-admin.png -------------------------------------------------------------------------------- /docs/images/pagetypes/textfile-admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/images/pagetypes/textfile-admin.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/lowlevel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/lowlevel.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/management.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/management.rst -------------------------------------------------------------------------------- /docs/multilingual.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/multilingual.rst -------------------------------------------------------------------------------- /docs/newpagetypes/admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/newpagetypes/admin.rst -------------------------------------------------------------------------------- /docs/newpagetypes/fluent_contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/newpagetypes/fluent_contents.rst -------------------------------------------------------------------------------- /docs/newpagetypes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/newpagetypes/index.rst -------------------------------------------------------------------------------- /docs/newpagetypes/models.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/newpagetypes/models.rst -------------------------------------------------------------------------------- /docs/newpagetypes/rendering.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/newpagetypes/rendering.rst -------------------------------------------------------------------------------- /docs/newpagetypes/urls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/newpagetypes/urls.rst -------------------------------------------------------------------------------- /docs/pagetypes/flatpage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/pagetypes/flatpage.rst -------------------------------------------------------------------------------- /docs/pagetypes/fluentpage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/pagetypes/fluentpage.rst -------------------------------------------------------------------------------- /docs/pagetypes/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/pagetypes/index.rst -------------------------------------------------------------------------------- /docs/pagetypes/others.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/pagetypes/others.rst -------------------------------------------------------------------------------- /docs/pagetypes/redirectnode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/pagetypes/redirectnode.rst -------------------------------------------------------------------------------- /docs/pagetypes/textfile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/pagetypes/textfile.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/sitemaps.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/sitemaps.rst -------------------------------------------------------------------------------- /docs/templatetags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/docs/templatetags.rst -------------------------------------------------------------------------------- /example/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/README.rst -------------------------------------------------------------------------------- /example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/fixtures/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/fixtures/create.sh -------------------------------------------------------------------------------- /example/fixtures/shop_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/fixtures/shop_example.json -------------------------------------------------------------------------------- /example/fixtures/welcome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/fixtures/welcome.json -------------------------------------------------------------------------------- /example/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/manage.py -------------------------------------------------------------------------------- /example/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/requirements.txt -------------------------------------------------------------------------------- /example/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/settings.py -------------------------------------------------------------------------------- /example/simpleshop/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/simpleshop/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/simpleshop/admin.py -------------------------------------------------------------------------------- /example/simpleshop/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/simpleshop/migrations/0001_initial.py -------------------------------------------------------------------------------- /example/simpleshop/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/simpleshop/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/simpleshop/models.py -------------------------------------------------------------------------------- /example/simpleshop/page_type_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/simpleshop/page_type_plugins.py -------------------------------------------------------------------------------- /example/simpleshop/templates/products/product_details.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/simpleshop/templates/products/product_details.html -------------------------------------------------------------------------------- /example/simpleshop/templates/products/productcategorypage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/simpleshop/templates/products/productcategorypage.html -------------------------------------------------------------------------------- /example/simpleshop/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/simpleshop/views.py -------------------------------------------------------------------------------- /example/theme1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/theme1/static/theme1/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/theme1/static/theme1/site.css -------------------------------------------------------------------------------- /example/theme1/templates/theme1/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/theme1/templates/theme1/base.html -------------------------------------------------------------------------------- /example/theme1/templates/theme1/pages/standard-twocols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/theme1/templates/theme1/pages/standard-twocols.html -------------------------------------------------------------------------------- /example/theme1/templates/theme1/pages/standard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/theme1/templates/theme1/pages/standard.html -------------------------------------------------------------------------------- /example/theme1/templates/theme1/parts/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/theme1/templates/theme1/parts/sidebar.html -------------------------------------------------------------------------------- /example/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/example/urls.py -------------------------------------------------------------------------------- /fluent_pages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/__init__.py -------------------------------------------------------------------------------- /fluent_pages/admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/admin/__init__.py -------------------------------------------------------------------------------- /fluent_pages/admin/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/admin/utils.py -------------------------------------------------------------------------------- /fluent_pages/adminui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/adminui/__init__.py -------------------------------------------------------------------------------- /fluent_pages/adminui/htmlpageadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/adminui/htmlpageadmin.py -------------------------------------------------------------------------------- /fluent_pages/adminui/overrides.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/adminui/overrides.py -------------------------------------------------------------------------------- /fluent_pages/adminui/pageadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/adminui/pageadmin.py -------------------------------------------------------------------------------- /fluent_pages/adminui/pagelayoutadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/adminui/pagelayoutadmin.py -------------------------------------------------------------------------------- /fluent_pages/adminui/urlnodechildadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/adminui/urlnodechildadmin.py -------------------------------------------------------------------------------- /fluent_pages/adminui/urlnodeparentadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/adminui/urlnodeparentadmin.py -------------------------------------------------------------------------------- /fluent_pages/adminui/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/adminui/utils.py -------------------------------------------------------------------------------- /fluent_pages/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/apps.py -------------------------------------------------------------------------------- /fluent_pages/appsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/appsettings.py -------------------------------------------------------------------------------- /fluent_pages/extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/extensions/__init__.py -------------------------------------------------------------------------------- /fluent_pages/extensions/pagetypebase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/extensions/pagetypebase.py -------------------------------------------------------------------------------- /fluent_pages/extensions/pagetypepool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/extensions/pagetypepool.py -------------------------------------------------------------------------------- /fluent_pages/forms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/forms/__init__.py -------------------------------------------------------------------------------- /fluent_pages/forms/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/forms/fields.py -------------------------------------------------------------------------------- /fluent_pages/integration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/integration/__init__.py -------------------------------------------------------------------------------- /fluent_pages/integration/fluent_contents/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/integration/fluent_contents/__init__.py -------------------------------------------------------------------------------- /fluent_pages/integration/fluent_contents/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/integration/fluent_contents/admin.py -------------------------------------------------------------------------------- /fluent_pages/integration/fluent_contents/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/integration/fluent_contents/models.py -------------------------------------------------------------------------------- /fluent_pages/integration/fluent_contents/page_type_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/integration/fluent_contents/page_type_plugins.py -------------------------------------------------------------------------------- /fluent_pages/integration/fluent_contents/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/integration/fluent_contents/tests.py -------------------------------------------------------------------------------- /fluent_pages/locale/en/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/locale/en/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /fluent_pages/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /fluent_pages/locale/nl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/locale/nl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /fluent_pages/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/management/commands/make_language_redirects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/management/commands/make_language_redirects.py -------------------------------------------------------------------------------- /fluent_pages/management/commands/rebuild_page_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/management/commands/rebuild_page_tree.py -------------------------------------------------------------------------------- /fluent_pages/management/commands/remove_stale_pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/management/commands/remove_stale_pages.py -------------------------------------------------------------------------------- /fluent_pages/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/migrations/0001_initial.py -------------------------------------------------------------------------------- /fluent_pages/migrations/0002_add_htmlpage_meta_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/migrations/0002_add_htmlpage_meta_image.py -------------------------------------------------------------------------------- /fluent_pages/migrations/0003_set_htmlpage_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/migrations/0003_set_htmlpage_defaults.py -------------------------------------------------------------------------------- /fluent_pages/migrations/0004_add_htmlpage_not_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/migrations/0004_add_htmlpage_not_null.py -------------------------------------------------------------------------------- /fluent_pages/migrations/0005_author_on_delete_set_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/migrations/0005_author_on_delete_set_null.py -------------------------------------------------------------------------------- /fluent_pages/migrations/0006_remove_mptt_indices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/migrations/0006_remove_mptt_indices.py -------------------------------------------------------------------------------- /fluent_pages/migrations/0007_use_parler_transactionsfk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/migrations/0007_use_parler_transactionsfk.py -------------------------------------------------------------------------------- /fluent_pages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/models/__init__.py -------------------------------------------------------------------------------- /fluent_pages/models/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/models/db.py -------------------------------------------------------------------------------- /fluent_pages/models/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/models/fields.py -------------------------------------------------------------------------------- /fluent_pages/models/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/models/managers.py -------------------------------------------------------------------------------- /fluent_pages/models/navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/models/navigation.py -------------------------------------------------------------------------------- /fluent_pages/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/models/utils.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/pagetypes/flatpage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/flatpage/__init__.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/flatpage/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/flatpage/admin.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/flatpage/appsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/flatpage/appsettings.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/flatpage/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/flatpage/migrations/0001_initial.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/flatpage/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/pagetypes/flatpage/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/flatpage/models.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/flatpage/page_type_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/flatpage/page_type_plugins.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/flatpage/templates/admin/fluent_pages/pagetypes/flatpage/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/flatpage/templates/admin/fluent_pages/pagetypes/flatpage/change_form.html -------------------------------------------------------------------------------- /fluent_pages/pagetypes/flatpage/templates/fluent_pages/pagetypes/flatpage/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/flatpage/templates/fluent_pages/pagetypes/flatpage/default.html -------------------------------------------------------------------------------- /fluent_pages/pagetypes/flatpage/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/flatpage/tests.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/fluentpage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/pagetypes/fluentpage/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/fluentpage/admin.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/fluentpage/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/fluentpage/migrations/0001_initial.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/fluentpage/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/pagetypes/fluentpage/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/fluentpage/models.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/fluentpage/page_type_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/fluentpage/page_type_plugins.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/fluentpage/static/fluent_pages/fluentpage/fluent_layouts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/fluentpage/static/fluent_pages/fluentpage/fluent_layouts.js -------------------------------------------------------------------------------- /fluent_pages/pagetypes/fluentpage/templates/admin/fluentpage/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/fluentpage/templates/admin/fluentpage/change_form.html -------------------------------------------------------------------------------- /fluent_pages/pagetypes/fluentpage/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/fluentpage/tests.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/fluentpage/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/fluentpage/widgets.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/redirectnode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/pagetypes/redirectnode/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/redirectnode/admin.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/redirectnode/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/redirectnode/migrations/0001_initial.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/redirectnode/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/pagetypes/redirectnode/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/redirectnode/models.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/redirectnode/page_type_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/redirectnode/page_type_plugins.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/redirectnode/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/redirectnode/tests.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/textfile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/pagetypes/textfile/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/textfile/migrations/0001_initial.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/textfile/migrations/0002_add_translation_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/textfile/migrations/0002_add_translation_model.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/textfile/migrations/0003_migrate_translatable_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/textfile/migrations/0003_migrate_translatable_fields.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/textfile/migrations/0004_remove_untranslated_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/textfile/migrations/0004_remove_untranslated_fields.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/textfile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/pagetypes/textfile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/textfile/models.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/textfile/page_type_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/textfile/page_type_plugins.py -------------------------------------------------------------------------------- /fluent_pages/pagetypes/textfile/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/pagetypes/textfile/tests.py -------------------------------------------------------------------------------- /fluent_pages/sitemaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/sitemaps.py -------------------------------------------------------------------------------- /fluent_pages/static/fluent_pages/admin/pagetree.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/static/fluent_pages/admin/pagetree.css -------------------------------------------------------------------------------- /fluent_pages/templates/admin/fluent_pages/integration/fluent_contents/base_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templates/admin/fluent_pages/integration/fluent_contents/base_change_form.html -------------------------------------------------------------------------------- /fluent_pages/templates/admin/fluent_pages/page/base_change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templates/admin/fluent_pages/page/base_change_form.html -------------------------------------------------------------------------------- /fluent_pages/templates/admin/fluent_pages/page/change_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templates/admin/fluent_pages/page/change_form.html -------------------------------------------------------------------------------- /fluent_pages/templates/admin/fluent_pages/page/change_list.html: -------------------------------------------------------------------------------- 1 | {% extends "admin/polymorphic_tree/change_list.html" %} 2 | -------------------------------------------------------------------------------- /fluent_pages/templates/fluent_pages/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templates/fluent_pages/base.html -------------------------------------------------------------------------------- /fluent_pages/templates/fluent_pages/example-base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templates/fluent_pages/example-base.html -------------------------------------------------------------------------------- /fluent_pages/templates/fluent_pages/example-cmspage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templates/fluent_pages/example-cmspage.html -------------------------------------------------------------------------------- /fluent_pages/templates/fluent_pages/intro_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templates/fluent_pages/intro_page.html -------------------------------------------------------------------------------- /fluent_pages/templates/fluent_pages/parts/breadcrumb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templates/fluent_pages/parts/breadcrumb.html -------------------------------------------------------------------------------- /fluent_pages/templates/fluent_pages/parts/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templates/fluent_pages/parts/menu.html -------------------------------------------------------------------------------- /fluent_pages/templates/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templates/robots.txt -------------------------------------------------------------------------------- /fluent_pages/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/templatetags/appurl_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templatetags/appurl_tags.py -------------------------------------------------------------------------------- /fluent_pages/templatetags/fluent_pages_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/templatetags/fluent_pages_tags.py -------------------------------------------------------------------------------- /fluent_pages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/test_admin.py -------------------------------------------------------------------------------- /fluent_pages/tests/test_forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/test_forms.py -------------------------------------------------------------------------------- /fluent_pages/tests/test_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/test_menu.py -------------------------------------------------------------------------------- /fluent_pages/tests/test_modeldata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/test_modeldata.py -------------------------------------------------------------------------------- /fluent_pages/tests/test_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/test_plugins.py -------------------------------------------------------------------------------- /fluent_pages/tests/test_templatetags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/test_templatetags.py -------------------------------------------------------------------------------- /fluent_pages/tests/test_urldispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/test_urldispatcher.py -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/testapp/migrations/0001_initial.py -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/testapp/models.py -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/page_type_plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/testapp/page_type_plugins.py -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/testapp/templates/404.html -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/templates/testapp/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/testapp/templates/testapp/base.html -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/templates/testapp/json_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/testapp/templates/testapp/json_menu.html -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/templates/testapp/simpletextpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/testapp/templates/testapp/simpletextpage.html -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/testapp/urls.py -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/urls_nonroot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/testapp/urls_nonroot.py -------------------------------------------------------------------------------- /fluent_pages/tests/testapp/urls_webshop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/testapp/urls_webshop.py -------------------------------------------------------------------------------- /fluent_pages/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/tests/utils.py -------------------------------------------------------------------------------- /fluent_pages/urlresolvers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/urlresolvers.py -------------------------------------------------------------------------------- /fluent_pages/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/urls.py -------------------------------------------------------------------------------- /fluent_pages/views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/views/__init__.py -------------------------------------------------------------------------------- /fluent_pages/views/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/views/dispatcher.py -------------------------------------------------------------------------------- /fluent_pages/views/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/views/mixins.py -------------------------------------------------------------------------------- /fluent_pages/views/seo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/fluent_pages/views/seo.py -------------------------------------------------------------------------------- /makemessages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/makemessages.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/pyproject.toml -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/django-fluent/django-fluent-pages/HEAD/tox.ini --------------------------------------------------------------------------------