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

Add Information Page #21

Open
wants to merge 42 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
2dfa81d
Standard_pages app creation
nehakerung Nov 1, 2024
7c35050
Addition of InformationPage class in models
nehakerung Nov 4, 2024
93bb753
Changes to InformationPage class models
nehakerung Nov 4, 2024
5d4ec7d
Front end creation
nehakerung Nov 4, 2024
ddcaee6
Addition of template location and minor changes on information_page t…
nehakerung Nov 4, 2024
72d7fda
Added cms.standard_pages to installed_apps
nehakerung Nov 5, 2024
4e6cb4f
Updated apps.py for standard_pages to be similar to pre-existing apps
nehakerung Nov 5, 2024
0ba0955
Modified InformationPage in models
nehakerung Nov 5, 2024
afc6363
Updated template for informationPage
nehakerung Nov 5, 2024
de7c9bb
Modified models for standard_pages
nehakerung Nov 5, 2024
4a0a36b
Modified front end
nehakerung Nov 6, 2024
b1f8eda
working branch
nehakerung Nov 7, 2024
41d8bd2
Django models for information page updated and the template for the i…
sanjeevz3009 Nov 7, 2024
29af196
Zombie code removed
sanjeevz3009 Nov 7, 2024
ea31520
Unnused files deleted
sanjeevz3009 Nov 7, 2024
93e22b8
Mirgation file formatted
sanjeevz3009 Nov 7, 2024
524836e
django-manager-missing ignore added
sanjeevz3009 Nov 7, 2024
47316d4
TODO comment removed and docstrings added
sanjeevz3009 Nov 7, 2024
7f0ae06
Merge branch 'main' into feature/information-page-CMS-179
sanjeevz3009 Nov 7, 2024
5d7f29b
Information code formatted
sanjeevz3009 Nov 7, 2024
53627ec
Docstring rewritten to make it more concise
sanjeevz3009 Nov 7, 2024
b6af965
Updated body to content
sanjeevz3009 Nov 7, 2024
22cd8da
Conditional for last_updated added, InformationPage class docstring s…
sanjeevz3009 Nov 8, 2024
2a393b1
summary TextField null=true removed and the migration file regenerate…
sanjeevz3009 Nov 8, 2024
963591f
Removing the conditional as per requirement the summary field is requ…
sanjeevz3009 Nov 8, 2024
acb7074
InformationPage restrictions added
sanjeevz3009 Nov 8, 2024
cd3b04e
Merge branch 'main' into feature/information-page-CMS-179
sanjeevz3009 Nov 8, 2024
df367b3
Code formatted
sanjeevz3009 Nov 8, 2024
f15d658
Comments added
sanjeevz3009 Nov 11, 2024
ea81496
Moved parent_page code
nehakerung Nov 11, 2024
46d3c06
Removed extra blank lines for lint.py
nehakerung Nov 11, 2024
e2f8c22
Merge branch 'main' into feature/information-page-CMS-179
sanjeevz3009 Nov 11, 2024
b1bbaf2
Custom CSS added to make video embeds responsive
sanjeevz3009 Nov 11, 2024
784b06c
Formatting fixed
sanjeevz3009 Nov 11, 2024
697b141
Ignore Unexpected property "left" property-disallowed-list rule
sanjeevz3009 Nov 12, 2024
68e93f5
cms/release_calendar/models.py formating fixed
sanjeevz3009 Nov 12, 2024
e9d2f93
Merge branch 'main' into feature/information-page-CMS-179
nehakerung Nov 14, 2024
5f3b26a
Addition of equation partials
nehakerung Nov 14, 2024
c6edd94
Deleted media files and made lint, format test pass
nehakerung Nov 14, 2024
6bacf44
Repeated code remove, /media added to .gitignore, media file removed
nehakerung Nov 15, 2024
21e1533
Check tests pass
nehakerung Nov 15, 2024
af079e7
Custom sign commit
nehakerung Nov 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -187,3 +187,6 @@ static/

# mkdocs
/site

# Media files
/media
27 changes: 27 additions & 0 deletions cms/jinja2/templates/pages/information_page.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{% extends "templates/base_page.html" %}
{% from "components/related-content/_macro.njk" import onsRelatedContent %}

{% block main %}
<p>{{ page.summary }}</p>

{% if page.last_updated %}
<h5>Last Updated: {{ page.last_updated }}</h5>
MebinAbraham marked this conversation as resolved.
Show resolved Hide resolved
{% endif %}

{% include_block page.content %}

{% if related_pages %}
{# fmt:off #}
{{-
onsRelatedContent({
"ariaLabel": _('Related content'),
"rows": [{
"id": 'related-content',
"title": _('Related content'),
"itemsList": related_pages
}]
})
-}}
{# fmt:on #}
{% endif %}

1 change: 1 addition & 0 deletions cms/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"cms.themes",
"cms.topics",
"cms.users",
"cms.standard_pages",
"wagtail.embeds",
"wagtail.sites",
"wagtail.users",
Expand Down
Empty file.
8 changes: 8 additions & 0 deletions cms/standard_pages/apps.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from django.apps import AppConfig


class StandardPagesConfig(AppConfig):
"""The standard_pages app config."""

default_auto_field = "django.db.models.BigAutoField"
name = "cms.standard_pages"
64 changes: 64 additions & 0 deletions cms/standard_pages/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Generated by Django 5.1.2 on 2024-11-08 15:48

import django.db.models.deletion
from django.db import migrations, models

import cms.core.fields


class Migration(migrations.Migration):
initial = True

dependencies = [
("images", "0001_initial"),
("wagtailcore", "0094_alter_page_locale"),
]

operations = [
migrations.CreateModel(
name="InformationPage",
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",
),
),
("listing_title", models.CharField(blank=True, max_length=255)),
("listing_summary", models.CharField(blank=True, max_length=255)),
("social_text", models.CharField(blank=True, max_length=255)),
("summary", models.TextField(max_length=255)),
("last_updated", models.DateField(blank=True, null=True)),
("content", cms.core.fields.StreamField(block_lookup={})),
(
"listing_image",
models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="+",
to="images.customimage",
),
),
(
"social_image",
models.ForeignKey(
blank=True,
null=True,
on_delete=django.db.models.deletion.SET_NULL,
related_name="+",
to="images.customimage",
),
),
],
options={
"abstract": False,
},
bases=("wagtailcore.page", models.Model),
),
]
Empty file.
39 changes: 39 additions & 0 deletions cms/standard_pages/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
from typing import ClassVar

from django.db import models
from wagtail.admin.panels import FieldPanel
from wagtail.search import index

from cms.core.blocks.stream_blocks import CoreStoryBlock
from cms.core.fields import StreamField
from cms.core.models import BasePage


class InformationPage(BasePage): # type: ignore[django-manager-missing]
MebinAbraham marked this conversation as resolved.
Show resolved Hide resolved
"""A generic information page model."""

template = "templates/pages/information_page.html"

parent_page_types: ClassVar[list[str]] = [
# Ensures that the information page can only be created under the home page
"home.HomePage",
# Ensures that the information page can be created under another information page
"standard_pages.InformationPage",
]

summary = models.TextField(max_length=255)
last_updated = models.DateField(blank=True, null=True)
content = StreamField(CoreStoryBlock())
MebinAbraham marked this conversation as resolved.
Show resolved Hide resolved

content_panels: ClassVar[list[FieldPanel]] = [
*BasePage.content_panels,
FieldPanel("summary"),
FieldPanel("last_updated"),
FieldPanel("content"),
]

search_fields: ClassVar[list[index.SearchField | index.AutocompleteField]] = [
*BasePage.search_fields,
index.SearchField("summary"),
index.SearchField("content"),
]
zerolab marked this conversation as resolved.
Show resolved Hide resolved
16 changes: 16 additions & 0 deletions cms/static_src/sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,19 @@
body {
display: block;
}

// Custom CSS from Wagtail doc to enable responsive video embeds
.responsive-object {
position: relative;
}

.responsive-object iframe,
.responsive-object object,
.responsive-object embed {
position: absolute;
top: 0;
/* stylelint-disable-next-line property-disallowed-list */
left: 0;
zerolab marked this conversation as resolved.
Show resolved Hide resolved
width: 100%;
height: 100%;
}
Loading