Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FP-1318: Create Section Pattern via Bootstrap Container Plugin #431

Draft
wants to merge 16 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
a4e636f
FP-1318: Create Section Pattern via BS4 Container
wesleyboar Jan 15, 2022
997e3c5
Merge branch 'main' into task/FP-1318-section-pattern-as-container-pl…
wesleyboar Jan 19, 2022
9309912
Merge branch 'main' into task/FP-1318-section-pattern-as-container-pl…
wesleyboar Feb 2, 2022
36392ca
Merge branch 'main' into task/FP-1318-section-pattern-as-container-pl…
wesleyboar Feb 18, 2022
4f453d0
Merge branch 'task/FP-1318-section-pattern-as-container-plugin-shortc…
wesleyboar Feb 18, 2022
39cd7a7
Merge branch 'main' into task/FP-1318-section-pattern-as-container-pl…
wesleyboar Mar 10, 2022
7fd5a67
Merge branch 'main' into task/FP-1318-section-pattern-as-container-pl…
wesleyboar Mar 22, 2022
34fa312
chore(FP-1318): lockfile update for bootstrap4
wesleyboar Mar 22, 2022
92c7f00
Merge branch 'main' into task/FP-1318-section-pattern-as-container-pl…
wesleyboar Apr 19, 2022
a98b4ed
Merge branch 'main' into task/FP-1318-section-pattern-as-container-pl…
wesleyboar Apr 24, 2022
398f426
Merge branch 'main' into task/FP-1318-section-pattern-as-container-pl…
wesleyboar May 26, 2022
62e1608
FP-1318: Use Commit from Upstream Repo, Not a Fork
wesleyboar Sep 1, 2022
1151b3d
Merge branch 'main' into task/FP-1318-section-pattern-as-container-pl…
wesleyboar Sep 1, 2022
df381d6
Merge branch 'main' into task/FP-1318-section-pattern-as-container-pl…
wesleyboar Nov 13, 2023
994970f
chore: revert indepndent change
wesleyboar Nov 13, 2023
ed6aaf4
chore: revert poetry.lock also
wesleyboar Nov 13, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
36 changes: 36 additions & 0 deletions taccsite_cms/settings.py
Expand Up @@ -571,6 +571,42 @@ def get_subdirs_as_module_names(path):
# PLUGIN SETTINGS
########################

# SEE: https://github.com/django-cms/djangocms-bootstrap4
DJANGOCMS_BOOTSTRAP4_GRID_CONTAINERS = [
(_('Container'), (
('container', _('Container')), # default
(
'container o-section o-section--style-light',
_('Fluid, Light section')
),
(
'container o-section o-section--style-dark',
_('Fluid, Dark section')
),
)),
(_('Fluid container'), (
('container-fluid', _('Fluid')), # default
(
'container-fluid o-section o-section--style-light',
_('Fluid, Light section')
),
(
'container-fluid o-section o-section--style-dark',
_('Fluid, Dark section')
),
)),
(_('No container'), (
(
'o-section o-section--style-light',
_('Fluid, Light section')
),
(
'o-section o-section--style-dark',
_('Fluid, Dark section')
),
)),
]

# https://github.com/django-cms/djangocms-style
DJANGOCMS_STYLE_CHOICES = [
'card',
Expand Down