Remove unnecessary column around totals box and fix styling

This commit is contained in:
leigh-mil
2019-06-11 10:14:44 -04:00
parent b8b4b38a0a
commit 4b0a4628aa
3 changed files with 11 additions and 15 deletions

View File

@@ -91,14 +91,14 @@
{% endcall %}
<to-form inline-template v-bind:initial-clin-count="{{ form.clins.data | length }}">
<div>
<div class="task-order">
{% include "fragments/flash.html" %}
{% if task_order_id %}
{% set action = url_for("task_orders.update", portfolio_id=portfolio.id, task_order_id=task_order_id) %}
{% else %}
{% set action = url_for("task_orders.update", portfolio_id=portfolio.id) %}
{% endif %}
<form id="new-task-order" class="task-order task_order__form" action='{{ action }}' method="POST" autocomplete="off" enctype="multipart/form-data">
<form id="new-task-order" class="task_order__form" action='{{ action }}' method="POST" autocomplete="off" enctype="multipart/form-data">
{{ form.csrf_token }}
{{ SemiCollapsibleText(paragraph="task_orders.new.form_help_text" | translate) }}
@@ -339,9 +339,7 @@
</div>
{{ UploadInput(form.pdf) }}
</div>
<div class="col totals">
{{ TotalsBox(task_order=task_order) }}
</div>
{{ TotalsBox(task_order=task_order) }}
</div>
</form>
</div>