Templates and fragments that relate to specific resources (portfolios, applications, task orders) should reside in directories named for the relevant resource. This also matches the way the application routes are distributed among modules named for each resource type.
17 lines
557 B
HTML
17 lines
557 B
HTML
{% from "components/sticky_cta.html" import StickyCTA %}
|
|
|
|
{% extends 'portfolios/base.html' %}
|
|
|
|
{% block portfolio_content %}
|
|
|
|
{% call StickyCTA(text="Task order details") %}
|
|
{% if user_can(permissions.EDIT_TASK_ORDER_DETAILS) and not task_order.is_expired %}
|
|
<a href="{{ url_for('task_orders.edit', task_order_id=task_order.id) }}" class="usa-button usa-button-secondary" type="submit">Edit</a>
|
|
{% endif %}
|
|
{% endcall %}
|
|
|
|
<div class="task-order">
|
|
{% include "task_orders/fragments/task_order_review.html" %}
|
|
</div>
|
|
{% endblock %}
|