Changeset 13079 for trunk


Ignore:
Timestamp:
Feb 10, 2012, 2:03:28 PM (12 years ago)
Author:
plg
Message:

slight redesign on pending comments screen

Location:
trunk/admin
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/comments.php

    r13077 r13079  
    9393
    9494// +-----------------------------------------------------------------------+
     95// | Tabs                                                                  |
     96// +-----------------------------------------------------------------------+
     97
     98include_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// +-----------------------------------------------------------------------+
    95106// |                           comments display                            |
    96107// +-----------------------------------------------------------------------+
  • trunk/admin/themes/default/template/comments.tpl

    r13078 r13079  
    4545
    4646<div class="titrePage">
    47   <h2>{'Waiting'|@translate} {$TABSHEET_TITLE}</h2>
     47  <h2>{'Pending Comments'|@translate} {$TABSHEET_TITLE}</h2>
    4848</div>
    4949
    50 <h3>{'User comments validation'|@translate}</h3>
    51 
    5250{if !empty($comments) }
    53 <form method="post" action="{$F_ACTION}">
     51<form method="post" action="{$F_ACTION}" id="pendingComments">
    5452 
    55 <table width="99%">
     53<table>
    5654  {foreach from=$comments item=comment name=comment}
    5755  <tr valign="top" class="{if $smarty.foreach.comment.index is odd}row2{else}row1{/if}">
  • trunk/admin/themes/default/theme.css

    r13066 r13079  
    10591059  padding-left:10px;
    10601060}
     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.