From 7efc9bb572749d2039d301c443a048bfb1c84366 Mon Sep 17 00:00:00 2001 From: NguyenND Date: Wed, 19 Aug 2026 15:24:53 -0400 Subject: [PATCH] Aug 19 - Update remove Contract Work Order from the issue details --- app/templates/issues/view.html | 46 ---------------------------------- 1 file changed, 46 deletions(-) diff --git a/app/templates/issues/view.html b/app/templates/issues/view.html index db369a1..c186886 100644 --- a/app/templates/issues/view.html +++ b/app/templates/issues/view.html @@ -545,52 +545,6 @@ {% endif %} - {# ── Vendor Work Orders (phase36) ───────────────────────────────────── #} - {% if current_user.role in ['admin','director','project_manager','auditor'] %} -
-
-
Contractor Work Orders
-
-
- {% set wos = issue.work_orders.all() %} - {% if wos %} -
    - {% for wo in wos %} - {% set b = {'sent':'secondary','acknowledged':'info','completed':'success'}[wo.status] %} -
  • - {{ wo.vendor_name }} - {{ wo.vendor_email }} - - {{ wo.status_label }} -
  • - {% endfor %} -
- {% endif %} -
- -
- - -
-
- - -
-
- - -
- -
Emails the contractor a private link to acknowledge & complete — no account needed.
-
-
-
- {% endif %} {# /col-lg-4 #}