-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
100 additions
and
4 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
sandbox/sandbox/apps/home/migrations/0003_auto_20170531_1615.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# -*- coding: utf-8 -*- | ||
# Generated by Django 1.11.1 on 2017-05-31 16:15 | ||
from __future__ import unicode_literals | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
import wagtail.wagtailcore.blocks | ||
import wagtail.wagtailcore.fields | ||
import wagtail.wagtailimages.blocks | ||
import wagtail_personalisation.blocks | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('wagtailcore', '0033_remove_golive_expiry_help_text'), | ||
('home', '0002_create_homepage'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='PersonalisedFieldsPage', | ||
fields=[ | ||
('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.Page')), | ||
('body', wagtail.wagtailcore.fields.StreamField((('personalised_block', wagtail.wagtailcore.blocks.StructBlock((('segment', wagtail.wagtailcore.blocks.ChoiceBlock(choices=wagtail_personalisation.blocks.list_segment_choices, help_text='Only show this content block for users in this segment', label='Personalisation segment', required=False)), ('heading', wagtail.wagtailcore.blocks.CharBlock()), ('paragraph', wagtail.wagtailcore.blocks.RichTextBlock())))), ('personalised_block_template', wagtail.wagtailcore.blocks.StructBlock((('segment', wagtail.wagtailcore.blocks.ChoiceBlock(choices=wagtail_personalisation.blocks.list_segment_choices, help_text='Only show this content block for users in this segment', label='Personalisation segment', required=False)), ('heading', wagtail.wagtailcore.blocks.CharBlock()), ('paragraph', wagtail.wagtailcore.blocks.RichTextBlock())), label='Block with template', template='blocks/personalised_block_template.html')), ('personalised_rich_text_block', wagtail.wagtailcore.blocks.StructBlock((('segment', wagtail.wagtailcore.blocks.ChoiceBlock(choices=wagtail_personalisation.blocks.list_segment_choices, help_text='Only show this content block for users in this segment', label='Personalisation segment', required=False)), ('rich_text', wagtail.wagtailcore.blocks.RichTextBlock(label='Rich Text'))))), ('personalised_image', wagtail.wagtailcore.blocks.StructBlock((('segment', wagtail.wagtailcore.blocks.ChoiceBlock(choices=wagtail_personalisation.blocks.list_segment_choices, help_text='Only show this content block for users in this segment', label='Personalisation segment', required=False)), ('image', wagtail.wagtailimages.blocks.ImageChooserBlock(label='Image'))))), ('personalised_char', wagtail.wagtailcore.blocks.StructBlock((('segment', wagtail.wagtailcore.blocks.ChoiceBlock(choices=wagtail_personalisation.blocks.list_segment_choices, help_text='Only show this content block for users in this segment', label='Personalisation segment', required=False)), ('char', wagtail.wagtailcore.blocks.CharBlock(label='Text'))))), ('personalised_text', wagtail.wagtailcore.blocks.StructBlock((('segment', wagtail.wagtailcore.blocks.ChoiceBlock(choices=wagtail_personalisation.blocks.list_segment_choices, help_text='Only show this content block for users in this segment', label='Personalisation segment', required=False)), ('text', wagtail.wagtailcore.blocks.TextBlock(label='Mutli-line Text')))))))), | ||
], | ||
options={ | ||
'abstract': False, | ||
}, | ||
bases=('wagtailcore.page',), | ||
), | ||
migrations.AlterField( | ||
model_name='homepage', | ||
name='segment', | ||
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, related_name='+', to='wagtail_personalisation.Segment'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,37 @@ | ||
from __future__ import absolute_import, unicode_literals | ||
|
||
from django.utils.translation import ugettext_lazy as _ | ||
|
||
from wagtail.wagtailadmin.edit_handlers import StreamFieldPanel | ||
from wagtail.wagtailcore import blocks, fields | ||
from wagtail.wagtailcore.models import Page | ||
|
||
from wagtail_personalisation.blocks import (PersonalisedCharBlock, | ||
PersonalisedImageChooserBlock, PersonalisedRichTextBlock, | ||
PersonalisedStructBlock, PersonalisedTextBlock) | ||
from wagtail_personalisation.models import PersonalisablePageMixin | ||
|
||
|
||
class HomePage(Page, PersonalisablePageMixin): | ||
pass | ||
|
||
|
||
class PersonalisedFieldsPage(Page): | ||
body = fields.StreamField([ | ||
('personalised_block', PersonalisedStructBlock([ | ||
('heading', blocks.CharBlock()), | ||
('paragraph', blocks.RichTextBlock()) | ||
], render_fields=['heading', 'paragraph'])), | ||
('personalised_block_template', PersonalisedStructBlock([ | ||
('heading', blocks.CharBlock()), | ||
('paragraph', blocks.RichTextBlock()) | ||
], template='blocks/personalised_block_template.html', label=_('Block with template'))), | ||
('personalised_rich_text_block', PersonalisedRichTextBlock()), | ||
('personalised_image', PersonalisedImageChooserBlock()), | ||
('personalised_char', PersonalisedCharBlock()), | ||
('personalised_text', PersonalisedTextBlock()), | ||
]) | ||
|
||
content_panels = Page.content_panels + [ | ||
StreamFieldPanel('body') | ||
] |
9 changes: 9 additions & 0 deletions
9
sandbox/sandbox/apps/home/templates/blocks/personalised_block_template.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{% load wagtailcore_tags %} | ||
|
||
<div class="personalisation-block-template" style="background-color: cornsilk;"> | ||
<p>This is a block with <strong>template</strong>.</p> | ||
<h2>Heading: {{ value.heading }}</h2> | ||
<div> | ||
{{ value.paragraph|richtext }} | ||
</div> | ||
</div> |
15 changes: 15 additions & 0 deletions
15
sandbox/sandbox/apps/home/templates/home/personalised_fields_page.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{% extends "base.html" %} | ||
{% load wagtailcore_tags %} | ||
|
||
{% block body_class %}template-homepage{% endblock %} | ||
|
||
{% block content %} | ||
<h1>{{ page.title }}</h1> | ||
{% for block in page.body %} | ||
<section class="section-{{ block.block_type }}"> | ||
<p><em>Section for {{ block.block_type }}.</em></p> | ||
{% include_block block %} | ||
</section> | ||
<hr> | ||
{% endfor %} | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters