remove an unused template and fix a form bug

This commit is contained in:
dandds 2018-06-19 15:34:35 -04:00
parent b93b5a6c28
commit bedb686424
2 changed files with 2 additions and 30 deletions

View File

@ -1,24 +0,0 @@
{% extends '../requests_new.html.to' %}
{% block form %}
form goes here
<br>
{% if f.errors %}
<b>There were some errors</b>
{% end %}
<hr>
{% autoescape None %}
{% for e in f.a.errors %}
<b>{{ e }}</b>
{% end %}
<br>
a: {{ f.a }}
<hr>
b: {{ f.b }}
<br>
{% end %}

View File

@ -8,7 +8,6 @@
<h3 id="information-about-you">Information About You</h3>
<form>
<label for="">Name</label>
<input id="" name="" type="text">
@ -78,10 +77,8 @@
</div>
</fieldset>
</form>
<h3 id="information-about-your-collaborators">Information About Your Collaborators</h3>
<form>
<p>Please designate a Contracting Officer that will help you complete this process.</p>
<label for="">Name</label>
<input id="" name="" type="text">
@ -89,7 +86,6 @@
<label for="">Email</label>
<input id="" name="" type="text" placeholder="i.e. name@mail.gov">
</form>
{% end %}