-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduced ajax to view steps to avoid large size html
- Loading branch information
asurendra
authored and
asurendra
committed
Jan 20, 2016
1 parent
bb61a27
commit da31922
Showing
6 changed files
with
68 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<table class="table table-bordered" width="100%" cellspacing="0"> | ||
<tr> | ||
<td colspan="3"> | ||
<b>Description</b>: ${tc.description?replace("\n", "<br/>")} | ||
<br/> | ||
<b>Type</b>: ${tc.caseType} | ||
<br/> | ||
<b>Product</b>: ${tc.product} | ||
<br/> | ||
<b>Feature</b>: ${tc.feature} | ||
<br/> | ||
<b>Added Version</b>: ${tc.addedVersion} | ||
<br/> | ||
<b>Deprecated Version</b>: ${tc.deprecatedVersion} | ||
<br/> | ||
<b>Bug Id</b>: ${tc.bugId} | ||
</td> | ||
</tr> | ||
<#if tc.ecTeststepList??> | ||
<#list tc.ecTeststepList as step> | ||
<tr> | ||
<td> | ||
${step.stepNumber} | ||
</td> | ||
<td style="width:45%;"> | ||
${step.description?replace("\n", "<br/>")} | ||
</td> | ||
<td style="width:50%;"> | ||
${step.expected?replace("\n", "<br/>")} | ||
</td> | ||
</tr> | ||
</#list> | ||
</#if> | ||
</table> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters