From fdf754363e8a8b556dc8d793eef62695f2303e90 Mon Sep 17 00:00:00 2001
From: Erik Reid <erik.reid@geant.org>
Date: Fri, 5 Jun 2020 10:29:07 +0200
Subject: [PATCH] fixed column alignment

---
 inventory_provider/static/update.html | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/inventory_provider/static/update.html b/inventory_provider/static/update.html
index 774860ff..17efc214 100644
--- a/inventory_provider/static/update.html
+++ b/inventory_provider/static/update.html
@@ -38,7 +38,7 @@
               <th scope="col">errors</th>
             </tr>
             <tr ng-if="show_errors" ng-repeat="description in errors">
-              <td>{{ description }}</td>
+              <td colspan="2">{{ description }}</td>
             </tr>
           </table>
         </div>
@@ -52,8 +52,7 @@
               <th scope="col">warnings</th>
             </tr>
             <tr ng-if="show_warnings" ng-repeat="description in warnings">
-              <td></td>
-              <td>{{ description }}</td>
+              <td colspan="2">{{ description }}</td>
             </tr>
           </table>
         </div>
@@ -67,7 +66,7 @@
               <th scope="col">pending tasks</th>
             </tr>
             <tr ng-if="show_pending" ng-repeat="description in pending">
-              <td>{{ description }}</td>
+              <td colspan="2">{{ description }}</td>
             </tr>
           </table>
         </div>
-- 
GitLab