Added request placeholders

This commit is contained in:
Brian Duggan
2018-05-29 13:39:29 -04:00
parent 404c9fa497
commit 20fb102e1b
8 changed files with 75 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
{% extends '../requests.html.to' %}
{% block form %}
<h3>What is your name?</h3>
<input type='textbox'>
{% end %}

View File

@@ -0,0 +1,7 @@
{% extends '../requests.html.to' %}
{% block form %}
<h3>What is your quest?</h3>
<input type='textbox'>
{% end %}

View File

@@ -0,0 +1,10 @@
{% extends '../requests.html.to' %}
{% block form %}
<h3>What is your favorite color?</h3>
<input type='textbox'>
{% end %}
{% block next %}
<b class='usa-button'>MAKE THE REQUEST</b>
{% end %}

View File

@@ -0,0 +1,14 @@
<b>this is the sidebar</b>
{% for i,s in enumerate(screens) %}
<li>
{% if i+1==current %}
<b>{{ s['title'] }}</b>
{% else %}
<a href="{{ reverse_url('request_form',i+1) }}">
{{ s['title'] }}
</a>
{% end %}
</li>
{% end %}
<ul>
</ul>