Thread: [CS-Project-svn_notify] SF.net SVN: cs-project: [674] trunk/templates/content/tags/index.content. t
Brought to you by:
crazedsanity
From: <cra...@us...> - 2007-11-23 17:24:39
|
Revision: 674 http://cs-project.svn.sourceforge.net/cs-project/?rev=674&view=rev Author: crazedsanity Date: 2007-11-23 09:24:32 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Updated block row name to match code, form to change modifier, etc. Modified Paths: -------------- trunk/templates/content/tags/index.content.tmpl Modified: trunk/templates/content/tags/index.content.tmpl =================================================================== --- trunk/templates/content/tags/index.content.tmpl 2007-11-23 17:23:11 UTC (rev 673) +++ trunk/templates/content/tags/index.content.tmpl 2007-11-23 17:24:32 UTC (rev 674) @@ -15,14 +15,14 @@ </td> </tr> <!-- END availableTagsList --> - <!-- BEGIN availableTagsList_selected --> + <!-- BEGIN availableTagsList_noLink --> <tr> <td nowrap style="padding-left:5px;"> <img src="/images/bullet-round.png" border="0"> - <b> %%tagName%%</b> + <font size="+1"><b>%%tagName%%</b></font> </td> </tr> - <!-- END availableTagsList_selected --> + <!-- END availableTagsList_noLink --> </table> </td> </tr> @@ -38,28 +38,38 @@ </td> <td> + <form method="POST" action="{PHP_SELF}?editTagId={showTagNameId}"> + <input type="HIDDEN" name="tag_name_id" value="{showTagNameId}"> + <input type="HIDDEN" name="action" value="update"> <table border=1 cellpadding=3 cellspacing=0> <tr> - <th colspan=5> - {tagName} [{tagRecordCount}] - </th> + <td align="center" colspan="2"> + <h1 style="display:inline;">{tagName}</h1><br> + <table border="0" cellpadding="3" cellspacing="0"> + <tr> + <td><b>Associated Records:</b></td> + <td>{tagRecordCount}</td> + </tr> + <tr> + <td><b>Modifier:</b></td> + <td><select name="modifier" onChange="this.form.submit();">{modifier_option_list}</select> [{tagModifier}]</td> + </tr> + </table> + </td> </tr> <tr> + <th>Record Type</th> <th>Name</th> - <th>Move Record</th> </tr> <!-- BEGIN tag_row --> <tr style="background-color: %%rowColor%%;" onmouseover="this.style.backgroundColor = '#ffffff'" onmouseout="this.style.backgroundColor ='%%rowColor2%%'" onclick="location.href = '/content/%%module%%/view?ID=%%public_id%%'"> + + <td>%%module%%</td> - <td><a href="/content/%%module%%/view/?ID=%%public_id%%">%%name%%</a> </td> - - <td> - <a href="{PHP_SELF}?showTag={showTagNameId}&tagId=%%tag_id%%&move=up">up</a> / - <a href="{PHP_SELF}?showTag={showTagNameId}&tagId=%%tag_id%%&move=down">down</a> - </td> + <td nowrap><a href="/content/%%module%%/view?ID=%%public_id%%">%%name%%</a> </td> </tr> <!-- END tag_row --> <!-- BEGIN tag_row__noRecords --> @@ -68,6 +78,7 @@ </tr> <!-- END tag_row__noRecords --> </table> + </form> </td> </tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 19:04:38
|
Revision: 679 http://cs-project.svn.sourceforge.net/cs-project/?rev=679&view=rev Author: crazedsanity Date: 2007-11-23 11:01:03 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Link to help from tags page plus help icon. Modified Paths: -------------- trunk/templates/content/tags/index.content.tmpl Modified: trunk/templates/content/tags/index.content.tmpl =================================================================== --- trunk/templates/content/tags/index.content.tmpl 2007-11-23 18:58:23 UTC (rev 678) +++ trunk/templates/content/tags/index.content.tmpl 2007-11-23 19:01:03 UTC (rev 679) @@ -52,7 +52,12 @@ </tr> <tr> <td><b>Modifier:</b></td> - <td><select name="modifier" onChange="this.form.submit();">{modifier_option_list}</select> [{tagModifier}]</td> + <td> + <select name="modifier" onChange="this.form.submit();"> + {modifier_option_list} + </select> [{tagModifier}] + <a href="/help/tags/modifier" target="_blank"><img src="/images/icon-help.png" border="0"></a> + </td> </tr> </table> </td> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cra...@us...> - 2007-11-23 19:37:59
|
Revision: 681 http://cs-project.svn.sourceforge.net/cs-project/?rev=681&view=rev Author: crazedsanity Date: 2007-11-23 11:33:11 -0800 (Fri, 23 Nov 2007) Log Message: ----------- Better spot for help button, no more text display of current modifier. Modified Paths: -------------- trunk/templates/content/tags/index.content.tmpl Modified: trunk/templates/content/tags/index.content.tmpl =================================================================== --- trunk/templates/content/tags/index.content.tmpl 2007-11-23 19:16:48 UTC (rev 680) +++ trunk/templates/content/tags/index.content.tmpl 2007-11-23 19:33:11 UTC (rev 681) @@ -51,12 +51,12 @@ <td>{tagRecordCount}</td> </tr> <tr> - <td><b>Modifier:</b></td> + <td><b>Modifier:</b> + <a href="/help/tags/modifier" target="_blank"><img src="/images/icon-help.png" border="0"></a></td> <td> <select name="modifier" onChange="this.form.submit();"> {modifier_option_list} - </select> [{tagModifier}] - <a href="/help/tags/modifier" target="_blank"><img src="/images/icon-help.png" border="0"></a> + </select> </td> </tr> </table> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |