Skip to content
Snippets Groups Projects
Commit 22925bf8 authored by Chris Lawton's avatar Chris Lawton
Browse files

adding introduction field to the fund index page

parent cd8a9c6a
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
# Generated by Django 1.11.8 on 2018-02-08 10:49
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('public_funds', '005_link_text_optional'),
]
operations = [
migrations.AddField(
model_name='fundindex',
name='introduction',
field=models.TextField(blank=True),
),
]
...@@ -61,6 +61,12 @@ class FundIndex(BasePage): ...@@ -61,6 +61,12 @@ class FundIndex(BasePage):
subpage_types = ['FundPage'] subpage_types = ['FundPage']
parent_page_types = ['home.HomePage'] parent_page_types = ['home.HomePage']
introduction = models.TextField(blank=True)
content_panels = BasePage.content_panels + [
FieldPanel('introduction')
]
def get_context(self, request, *args, **kwargs): def get_context(self, request, *args, **kwargs):
funds = FundPage.objects.live().public().descendant_of(self) funds = FundPage.objects.live().public().descendant_of(self)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment