Scarab commit: svn commit: r10566 - trunk/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm
[email protected] 7 May 2008 13:15:31 -0000
Newsgroups
gmane.comp.java.scarab.cvs
Message-ID
<[email protected] >
Author: hair
Date: 2008-05-07 06:15:30-0700
New Revision: 10566
Modified:
trunk/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm
Log:
Issue SCB1454: (making the Scarab screen layout more modern)
Modified: trunk/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm
Url: http://scarab.tigris.org/source/browse/scarab/trunk/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm?view=diff&rev=10566&p1=trunk/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm&p2=trunk/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm&r1=10565&r2=10566
==============================================================================
--- trunk/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm (original)
+++ trunk/src/webapp/WEB-INF/templates/viewIssue/ViewIssueTab1.vm 2008-05-07 06:15:30-0700
@@ -6,11 +6,10 @@
<div class="axial">
- <table cellpadding="3" cellspacing="2" border="0">
+ <table cellpadding="3" cellspacing="2" border="0" width="100%">
<tr>
<th>$l10n.IssueId</th>
- <td width="25%"><b>$currentIssue.UniqueId ($currentIssue.RModuleIssueType.DisplayName)</b></td>
- <td width="*">
+ <td colspan="2"><b>$currentIssue.UniqueId ($currentIssue.RModuleIssueType.DisplayName)</b><br/>
#if ($currentIssue.isBlocked())
<a class="blockedmark" STYLE="text-decoration: none" title="$l10n.IssueCurrentlyBlocked" href='$tabLink.addPathInfo("tab", "6")'>$l10n.BlockedWarning</a>
#end
@@ -18,22 +17,15 @@
<a class="blockingmark" STYLE="text-decoration: none" title="$l10n.IssueDoesBlockOtherIssues" href='$tabLink.addPathInfo("tab", "6")'>$l10n.BlockingWarning</a>
#end
</td>
- </tr>
-
#if ($currentIssue.CreatedDate)
- <tr>
<th>$l10n.DateCommitted</th>
- <td colspan="2"><a href="mailTo:$currentIssue.CreatedBy.Email">$!currentIssue.CreatedBy.Name</a> $format.getDate($scarabR.DateFormat, $currentIssue.CreatedDate) </td>
- </tr>
+ <td colspan="2"><a href="mailTo:$currentIssue.CreatedBy.Email">$!currentIssue.CreatedBy.Name</a><br/>$format.getDate($scarabR.DateFormat, $currentIssue.CreatedDate) </td>
#end
-
-
#if ($currentIssue.ModifiedDate)
- <tr>
<th>$l10n.LastModified</th>
- <td colspan="2"><a href="mailTo:$currentIssue.ModifiedBy.Email">$!currentIssue.ModifiedBy.Name</a> $format.getDate($scarabR.DateFormat, $currentIssue.ModifiedDate) </td>
- </tr>
+ <td colspan="2"><a href="mailTo:$currentIssue.ModifiedBy.Email">$!currentIssue.ModifiedBy.Name</a><br/>$format.getDate($scarabR.DateFormat, $currentIssue.ModifiedDate) </td>
#end
+ </tr>
</table>
</div>