25 lines
437 B
Plaintext
25 lines
437 B
Plaintext
{% extends "base.html.to" %}
|
|
|
|
{% block content %}
|
|
|
|
<main class="usa-grid usa-section usa-content usa-layout-docs" id="main-content">
|
|
|
|
<table>
|
|
<tr>
|
|
<td style='width:30%;'>
|
|
{% include 'requests/sidebar.html.to' %}
|
|
</td>
|
|
<td>
|
|
{% block form %}
|
|
form goes here
|
|
{% end %}
|
|
{% block next %}
|
|
<a class='usa-button usa-button-secondary' href='{{ reverse_url('request_form',next_screen) }}'>next page</a>
|
|
{% end %}
|
|
</td>
|
|
</table>
|
|
</main>
|
|
|
|
{% end %}
|
|
|