42 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends 'task_orders/_new.html' %}
 | |
| 
 | |
| {% from "components/text_input.html" import TextInput %}
 | |
| {% from "components/options_input.html" import OptionsInput %}
 | |
| {% from "components/date_input.html" import DateInput %}
 | |
| {% from "components/multi_checkbox_input.html" import MultiCheckboxInput %}
 | |
| 
 | |
| {% block heading %}
 | |
|   {{ "task_orders.new.app_info.section_title"| translate }}
 | |
| {% endblock %}
 | |
| 
 | |
| {% block form %}
 | |
| 
 | |
| <!-- App Info Section -->
 | |
| <h3 class="task-order-form__heading subheading">{{ "task_orders.new.app_info.basic_info_title"| translate }}</h3>
 | |
| {{ TextInput(form.portfolio_name, placeholder="The name of your office or organization") }}
 | |
| {{ TextInput(form.scope, paragraph=True) }}
 | |
| <p><i>{{ "task_orders.new.app_info.sample_scope" | translate | safe }}</i></p>
 | |
| <div class="subheading--black">
 | |
|   {{ OptionsInput(form.defense_component) }}
 | |
| </div>
 | |
| 
 | |
| <hr>
 | |
| 
 | |
| <h3 id="reporting" class="subheading">{{ "task_orders.new.app_info.project_title" | translate }}</h3>
 | |
| {{ OptionsInput(form.app_migration) }}
 | |
| {{ OptionsInput(form.native_apps) }}
 | |
| {{ MultiCheckboxInput(form.complexity, form.complexity_other) }}
 | |
| 
 | |
| <hr>
 | |
| 
 | |
| <h3 class="subheading">{{ "task_orders.new.app_info.team_title" | translate }}</h3>
 | |
| {{ MultiCheckboxInput(form.dev_team, form.dev_team_other) }}
 | |
| {{ OptionsInput(form.team_experience) }}
 | |
| 
 | |
| <hr>
 | |
| 
 | |
| <h3 class="subheading">{{ "task_orders.new.app_info.market_research_title" | translate }}</h3>
 | |
| <p>{{ "task_orders.new.app_info.market_research_paragraph" | translate | safe }}</p>
 | |
| 
 | |
| {% endblock %}
 |