fix scope description and task order active step display

This commit is contained in:
dandds 2018-12-19 11:41:33 -05:00
parent 62a8b0ec40
commit c4a7b59f7f
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ class AppInfoForm(CacheableForm):
) )
scope = TextAreaField( scope = TextAreaField(
"Cloud Project Scope", "Cloud Project Scope",
description="The name of your office or organization. You can add multiple applications to your portfolio. Your task orders are used to pay for these applications and their environments", description="Your team's plan for using the cloud, such as migrating an existing application or creating a prototype.",
) )
defense_component = SelectField( defense_component = SelectField(
"Department of Defense Component", choices=SERVICE_BRANCHES "Department of Defense Component", choices=SERVICE_BRANCHES

View File

@ -11,7 +11,7 @@
<li class="progress-menu__item progress-menu__item--{{ step_indicator }}"> <li class="progress-menu__item progress-menu__item--{{ step_indicator }}">
<a href="{{ url_for('task_orders.new', screen=loop.index, task_order_id=task_order_id) }}" <a href="{{ url_for('task_orders.new', screen=loop.index, task_order_id=task_order_id) }}"
{% if g.matchesPath(url_for('task_orders.new', screen=loop.index + 1)) %}class="active"{% endif %} {% if g.matchesPath(url_for('task_orders.new', screen=loop.index)) %}class="active"{% endif %}
> >
{{ s['title'] }} {{ s['title'] }}
</a> </a>