Skip to content

Commit

Permalink
Start a page for documenting the design process
Browse files Browse the repository at this point in the history
  • Loading branch information
colmjude committed May 7, 2024
1 parent f0a37ff commit f12c783
Show file tree
Hide file tree
Showing 3 changed files with 78 additions and 0 deletions.
5 changes: 5 additions & 0 deletions application/blueprints/main/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ def index():
return render_template("index.html")


@main.route("/data-design-process")
def data_design_process():
return render_template("data-design-process.html")


@main.route("/what-we-are-working-on")
def what_we_are_working_on():

Expand Down
68 changes: 68 additions & 0 deletions application/templates/data-design-process.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@

{% extends 'layouts/base.html' %}

{% block app_breadcrumbs %}
{{
govukBreadcrumbs({
'items': [
{
'text': "Home",
'href': url_for('main.index')
},
{
'text': "Data design process"
}
]
})
}}
{% endblock app_breadcrumbs %}

{% block content %}
<div class='govuk-grid-row'>
<div class='govuk-grid-column-full govuk-grid-column-two-thirds-from-desktop'>
<h1 class="govuk-heading-xl">Data design process</h1>
</div>
</div>

<div class='govuk-grid-row'>
<div class='govuk-grid-column-two-thirds'>

<p class="govuk-body">Our data design process is split into stages.</p>
<p class="govuk-body">Having specific stages improves the visibility of our progress. We want to make it easy to see where a planning consideration is in our process and what we need to do to make progress.</p>

<p class="govuk-body">The stages of our data design process are:</p>

<h2 class="govuk-heading-m">Backlog</h2>

<p class="govuk body">This stage helps us to understand the planning data landscape.</p>

<h2 class="govuk-heading-m">Screen</h2>

<p class="govuk body">This stage helps us to verify that a consideration plays an important role in the planning system.</p>

<h2 class="govuk-heading-m">Research</h2>

<p class="govuk body">This stage is intended to help us to understand the planning need for a consideration.</p>

<h2 class="govuk-heading-m">Co-design</h2>

<p class="govuk body">This stage is focused on us designing the smallest data model that will satisfy the highest number of needs.</p>

<h2 class="govuk-heading-m">Test and iterate</h2>

<p class="govuk body">This stage helps us to build confidence in the data model, proving it is both feasible and will add value.</p>

<h2 class="govuk-heading-m">Go / no-go</h2>

<p class="govuk body">This stage helps us to get sign-off for any potential risks we have identified.</p>

<h2 class="govuk-heading-m">Prepare for platform</h2>

<p class="govuk body">This stage is focused on preparing for the productionisation of the dataset(s) for the consideration.</p>

<h2 class="govuk-heading-m">On the platform</h2>

<p class="govuk body">At this stage authoritative data will be collected and made available on <a href="https://www.planning.data.gov.uk/" class="govuk-link">planning.data.gov.uk</a>.</p>
</div>
</div>
{% endblock %}
5 changes: 5 additions & 0 deletions application/templates/layouts/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@
Planning considerations
</a>
</li>
<li class="govuk-header__navigation-item">
<a class="govuk-header__link" href="/data-design-process">
Design process
</a>
</li>
<li class="govuk-header__navigation-item">
<a class="govuk-header__link" href="/support">
Support
Expand Down

0 comments on commit f12c783

Please sign in to comment.