diff --git a/module/product/view/all.html.php b/module/product/view/all.html.php
index 09d5aca48b..954ad0b0b8 100644
--- a/module/product/view/all.html.php
+++ b/module/product/view/all.html.php
@@ -51,7 +51,9 @@
+ systemMode == 'ALM'):?>
+
product->name);?>
|
diff --git a/module/story/view/edit.html.php b/module/story/view/edit.html.php
index 96697c0fab..a201e015ef 100644
--- a/module/story/view/edit.html.php
+++ b/module/story/view/edit.html.php
@@ -204,6 +204,26 @@
status);?>
+ type == 'story'):?>
+ |
+ | story->stage;?> |
+
+ stages and $branchTagOption)
+ {
+ foreach($story->stages as $branch => $stage)
+ {
+ if(isset($branchTagOption[$branch])) echo ' ' . $branchTagOption[$branch] . html::select("stages[$branch]", $lang->story->stageList, $stage, "class='form-control chosen'") . ' ';
+ }
+ }
+ else
+ {
+ echo html::select('stage', $lang->story->stageList, $story->stage, "class='form-control chosen'");
+ }
+ ?>
+ |
+
+
| story->category;?> |
story->categoryList, $story->category, "class='form-control chosen'");?> |
diff --git a/module/testcase/model.php b/module/testcase/model.php
index 0c2fe2d24d..43aec7ec88 100644
--- a/module/testcase/model.php
+++ b/module/testcase/model.php
@@ -2452,13 +2452,13 @@ class testcaseModel extends model
{
$menu .= $this->buildMenu('testtask', 'runCase', "$extraParams&version=$case->currentVersion", $case, 'view', 'play', '', 'showinonlybody', false, "data-width='95%'");
$menu .= $this->buildMenu('testtask', 'results', "$extraParams&version=$case->version", $case, 'view', '', '', 'showinonlybody', false, "data-width='95%'");
- $menu .= $this->buildMenu('testcase', 'importToLib', $params, $case, 'view', 'assets', '', 'showinonlybody iframe', true, "data-width='500px'");
+ if(!isonlybody()) $menu .= $this->buildMenu('testcase', 'importToLib', $params, $case, 'view', 'assets', '', 'showinonlybody iframe', true, "data-width='500px'");
}
else
{
$menu .= $this->buildMenu('testtask', 'runCase', "$extraParams&version=$case->currentVersion", $case, 'view', 'play', '', 'showinonlybody iframe', false, "data-width='95%'");
$menu .= $this->buildMenu('testtask', 'results', "$extraParams&version=$case->version", $case, 'view', '', '', 'showinonlybody iframe', false, "data-width='95%'");
- $menu .= $this->buildMenu('testcase', 'importToLib', $params, $case, 'view', 'assets', '', 'showinonlybody iframe', true, "data-width='500px'");
+ if(!isonlybody()) $menu .= $this->buildMenu('testcase', 'importToLib', $params, $case, 'view', 'assets', '', 'showinonlybody iframe', true, "data-width='500px'");
}
if($case->caseFails > 0)
{