Changeset 13079
- Timestamp:
- Feb 10, 2012, 2:03:28 PM (13 years ago)
- Location:
- trunk/admin
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/comments.php
r13077 r13079 93 93 94 94 // +-----------------------------------------------------------------------+ 95 // | Tabs | 96 // +-----------------------------------------------------------------------+ 97 98 include_once(PHPWG_ROOT_PATH.'admin/include/tabsheet.class.php'); 99 100 $tabsheet = new tabsheet(); 101 $tabsheet->add('', l10n('User comments validation'), ''); 102 $tabsheet->select(''); 103 $tabsheet->assign(); 104 105 // +-----------------------------------------------------------------------+ 95 106 // | comments display | 96 107 // +-----------------------------------------------------------------------+ -
trunk/admin/themes/default/template/comments.tpl
r13078 r13079 45 45 46 46 <div class="titrePage"> 47 <h2>{' Waiting'|@translate} {$TABSHEET_TITLE}</h2>47 <h2>{'Pending Comments'|@translate} {$TABSHEET_TITLE}</h2> 48 48 </div> 49 49 50 <h3>{'User comments validation'|@translate}</h3>51 52 50 {if !empty($comments) } 53 <form method="post" action="{$F_ACTION}" >51 <form method="post" action="{$F_ACTION}" id="pendingComments"> 54 52 55 <table width="99%">53 <table> 56 54 {foreach from=$comments item=comment name=comment} 57 55 <tr valign="top" class="{if $smarty.foreach.comment.index is odd}row2{else}row1{/if}"> -
trunk/admin/themes/default/theme.css
r13066 r13079 1059 1059 padding-left:10px; 1060 1060 } 1061 1062 /* Pending Comments */ 1063 #pendingComments { 1064 padding:0 5px 0 10px; 1065 } 1066 1067 #pendingComments table { 1068 width:100%; 1069 } 1070 1071 #pendingComments .bottomButtons { 1072 text-align:left; 1073 }
Note: See TracChangeset
for help on using the changeset viewer.