Files
notifications-admin/app/templates/fullscreen_template.html
Chris Hill-Scott 8bfb67c702 Go fullscreen for row-level errors in spreadsheets
Two bits of context:

1. As we start dealing with letters, which have more columns, it’s more
   likely that people’s spreadsheets won’t fit in our current layout.

2. We already removed the view of the template from the page that shows
   row-level errors (eg bad phone number or missing personalisation) in
   spreadsheets because you don’t need to know about the content of the
   message in order to fix the errors.

This commit goes further by removing anything that isn’t to do with
the errors, including the normal GOV.UK header and the service’s
navigation.

This means the content can go the width of the page, which means it can
be allowed to scroll horizontally without being a usability car
crash. Which means that the layout doesn’t break with a spreadsheet that
has lots of columns.
2017-12-20 12:09:18 +00:00

24 lines
692 B
HTML

{% extends "admin_template.html" %}
{% block inside_header %}{% endblock %}
{% block proposition_header %}{% endblock %}
{% block body_classes %} with-fullscreen {% endblock %}
{% block footer_top %}{% endblock %}
{% block footer_support_links %}{% endblock %}
{% block content %}
<main role="main">
<div class="fullscreen-header">
{% block fullscreen_pre_title %}{% endblock %}
</div>
<div class="fullscreen-sticky-bar js-stick-at-top-when-scrolling">
{% block fullscreen_title %}{% endblock %}
</div>
<div class="fullscreen-content" data-module='fullscreen-table'>
{% block fullscreen_content %}{% endblock %}
</div>
</main>
{% endblock %}