Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
9b20ca0
Added placeholder pages for Missing data and List of Projects
mingoland Dec 16, 2024
c02b50d
Added placeholder folder for Data sources
Alexed93 Dec 16, 2024
e9d72e2
Added side nav items
Alexed93 Dec 16, 2024
d979f35
Added opening diagram
Alexed93 Dec 16, 2024
87d10c0
Drafted page structure
Alexed93 Dec 16, 2024
6c40c7b
Missing information
adyhoran1 Dec 16, 2024
3bf4a03
Intro and user need
adyhoran1 Dec 16, 2024
dc19eaf
Draft plan of content under each heading
Alexed93 Dec 16, 2024
a8f73ac
Merge branch 'rsd-ucd-week-q3' of github.com:DFE-Digital/design into …
Alexed93 Dec 16, 2024
d451983
Added complex example
Alexed93 Dec 17, 2024
28c2485
Added edited example
Alexed93 Dec 17, 2024
e873b46
Changed examples to use HTML for details component rather than nunjucks
Alexed93 Dec 17, 2024
ab83b4f
Added HTML code example for data-sources-basic
Alexed93 Dec 17, 2024
d83a8f8
Added HTML code example for data-sources-complex and edited
Alexed93 Dec 17, 2024
9680986
Added Nunjucks code example for data-sources Basic
Alexed93 Dec 17, 2024
e64f2e8
Added Nunjucks code example for data-sources Complex and Edited
Alexed93 Dec 17, 2024
3dee0f8
Tidy additional spaces in Nunjucks code examples
Alexed93 Dec 17, 2024
e8dc4dc
Fix bug in nunjucks code snippet
Alexed93 Dec 17, 2024
6fe554c
Drafted content for 'Research on this pattern'
Alexed93 Dec 17, 2024
61c0dcb
Drafted full page content
Alexed93 Dec 17, 2024
e2aafba
Added primary content for List of Projects
mingoland Dec 17, 2024
f891f18
Data sources
adyhoran1 Dec 19, 2024
b7831c3
Missing data
adyhoran1 Dec 19, 2024
ea6e86b
Side nav
adyhoran1 Dec 19, 2024
5836033
List of projects
adyhoran1 Dec 20, 2024
ba1690a
List of projects tweaks
adyhoran1 Dec 20, 2024
3974937
Missing data variations
adyhoran1 Dec 20, 2024
fa9afd7
Research on this pattern
adyhoran1 Jan 2, 2025
35ab6b7
Missing data update
adyhoran1 Jan 6, 2025
8d6b16d
Data sources typo
adyhoran1 Jan 13, 2025
b3cfa90
Joe Bloggs email
adyhoran1 Jan 13, 2025
e869b02
Footer, internal
adyhoran1 Jan 16, 2025
79666ac
Removed unproven content from Missing Data and Projects List patterns
mingoland Feb 7, 2025
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
Binary file modified app/assets/images/.DS_Store
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -0,0 +1,216 @@
<!-- data-sources-basic HTML -->
{% set htmlCodeDataSourceBasic = '<code class="hljs language-html">
&lt;details class=&quot;govuk-details&quot;&gt;

&lt;summary class=&quot;govuk-details__summary&quot;&gt;
&lt;span class=&quot;govuk-details__summary-text&quot;&gt;
Where this information came from
&lt;/span&gt;
&lt;/summary&gt;

&lt;div class=&quot;govuk-details__text&quot;&gt;
&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;Pre advisory board:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
All information was taken from Get information about schools on 18 August 2023.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;Post advisory board:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
All information was taken from Get information about schools on 31 October 2023.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;Free schools:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
All information was taken from Get information about schools on 31 October 2023.
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;/details&gt;
</code>' %}

<!-- data-sources-complex HTML -->
{% set htmlCodeDataSourceComplex = '<code class="hljs language-html">
&lt;details class=&quot;govuk-details&quot;&gt;

&lt;summary class=&quot;govuk-details__summary&quot;&gt;
&lt;span class=&quot;govuk-details__summary-text&quot;&gt;
Where this information came from
&lt;/span&gt;
&lt;/summary&gt;

&lt;div class=&quot;govuk-details__text&quot;&gt;
&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;Free school meals:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
Pupils eligibile for free school meals was taken from Get information about schools on 31 October 2023.
&lt;/li&gt;
&lt;li&gt;
Local authority average 2023/24 was taken from Explore education statistics on 6 August 2024.
&lt;/li&gt;
&lt;li&gt;
National average 2023/24 was taken from Explore education statistics on 6 August 2024.
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;/details&gt;
</code>' %}

<!-- data-sources-edited HTML -->
{% set htmlCodeDataSourceEdited = '<code class="hljs language-html">
&lt;details class=&quot;govuk-details&quot;&gt;

&lt;summary class=&quot;govuk-details__summary&quot;&gt;
&lt;span class=&quot;govuk-details__summary-text&quot;&gt;
Where this information came from
&lt;/span&gt;
&lt;/summary&gt;

&lt;div class=&quot;govuk-details__text&quot;&gt;
&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;Trust relationship manager:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
The Trust relationship manager was last updated by Joe.Bloggs@test.email.uk on 10 December 2024.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;SFSO (Schools financial support and oversight) lead:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
The SFSO lead was last updated by Joe.Bloggs@test.email.uk on 12 December 2024.
&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;

&lt;/details&gt;
</code>' %}

<!-- data-sources-basic NUNJUCKS -->
{% set nunjucksCodeDataSourceBasic = '<code class="hljs language-html">
{% set sourcesContentHTML %}

&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;Pre advisory board:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
All information was taken from Get information about schools on 31 October 2023.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;Post advisory board:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
All information was taken from Get information about schools on 31 October 2023.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;Free schools:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
All information was taken from Get information about schools on 31 October 2023.
&lt;/li&gt;
&lt;/ul&gt;

{% endset %}

{% from &quot;govuk/components/details/macro.njk&quot; import govukDetails %}
{{ govukDetails({
summaryText: &quot;Where this information came from&quot;,
html: sourcesContentHTML
}) }}
</code>' %}

<!-- data-sources-complex NUNJUCKS -->
{% set nunjucksCodeDataSourceComplex = '<code class="hljs language-html">
{% set sourcesContentHTML %}

&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;Free school meals:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
Pupils eligibile for free school meals was taken from Get information about schools on 31 October 2023.
&lt;/li&gt;
&lt;li&gt;
Local authority average 2023/24 was taken from Explore education statistics on 6 August 2024.
&lt;/li&gt;
&lt;li&gt;
National average 2023/24 was taken from Explore education statistics on 6 August 2024.
&lt;/li&gt;
&lt;/ul&gt;

{% endset %}

{% from &quot;govuk/components/details/macro.njk&quot; import govukDetails %}
{{ govukDetails({
summaryText: &quot;Where this information came from&quot;,
html: sourcesContentHTML
}) }}
</code>' %}

<!-- data-sources-edited NUNJUCKS -->
{% set nunjucksCodeDataSourceEdited = '<code class="hljs language-html">
{% set sourcesContentHTML %}

&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;Trust relationship manager:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
The Trust relationship manager was last updated by Joe.Bloggs@test.email.uk on 10 December 2024.
&lt;/li&gt;
&lt;/ul&gt;

&lt;p class=&quot;govuk-body&quot;&gt;
&lt;strong&gt;SFSO (Schools financial support and oversight) lead:&lt;/strong&gt;
&lt;/p&gt;

&lt;ul class=&quot;govuk-list govuk-list--bullet&quot;&gt;
&lt;li&gt;
The SFSO lead was last updated by Joe.Bloggs@test.email.uk on 12 December 2024.
&lt;/li&gt;
&lt;/ul&gt;

{% endset %}

{% from &quot;govuk/components/details/macro.njk&quot; import govukDetails %}
{{ govukDetails({
summaryText: &quot;Where this information came from&quot;,
html: sourcesContentHTML
}) }}
</code>' %}

Loading