{% extends 'portfolios/base.html' %} {% from "components/text_input.html" import TextInput %} {% from "components/multi_checkbox_input.html" import MultiCheckboxInput %} {% block content %}

{{ "task_orders.so_review.title" | translate }}

{{ "task_orders.so_review.certification" | translate }}

{{ TextInput(form.certifying_official) }} {{ TextInput(form.co_title) }} {{ TextInput(form.co_phone, placeholder='(123) 456-7890', validation='usPhone') }} {{ TextInput(form.co_address, paragraph=True) }}
{{ MultiCheckboxInput(form.required_distribution) }}
{% endblock %}