From 3be30d09d78e1d826039515ee268512980f9d4dc Mon Sep 17 00:00:00 2001
From: pengyuesheng <pengyuesheng@gohighsec.com>
Date: Fri, 31 May 2019 14:23:22 +0800
Subject: [PATCH] The columns out of page range

Too many columns in the table, resulting in out of page range,
affecting the appearance.
Some information can be seen on the details page,
I think it can be deleted from the table.

Change-Id: Id3b45726f14087088767c5171b14fd8ec12da9ef
---
 mistraldashboard/action_executions/tables.py | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/mistraldashboard/action_executions/tables.py b/mistraldashboard/action_executions/tables.py
index 52f391e..8e93b0e 100644
--- a/mistraldashboard/action_executions/tables.py
+++ b/mistraldashboard/action_executions/tables.py
@@ -130,20 +130,6 @@ class ActionExecutionsTable(tables.DataTable):
         "description",
         verbose_name=_("Description")
     )
-    input = tables.Column(
-        "",
-        verbose_name=_("Input"),
-        empty_value=_("View"),
-        link="horizon:mistral:action_executions:input",
-        link_classes=("ajax-modal",)
-    )
-    output = tables.Column(
-        "",
-        verbose_name=_("Output"),
-        empty_value=_("View"),
-        link="horizon:mistral:action_executions:output",
-        link_classes=("ajax-modal",)
-    )
     created_at = tables.Column(
         "created_at",
         verbose_name=_("Created at"),