[xoops-cvslog 4235] CVS update: xoops2jp/html/modules/user/admin/templates

Zurück zum Archiv-Index

Tom Hayakawa tom_g3x****@users*****
2006年 8月 19日 (土) 14:55:45 JST


Index: xoops2jp/html/modules/user/admin/templates/ranks_list.html
diff -u xoops2jp/html/modules/user/admin/templates/ranks_list.html:1.1.2.13 xoops2jp/html/modules/user/admin/templates/ranks_list.html:1.1.2.14
--- xoops2jp/html/modules/user/admin/templates/ranks_list.html:1.1.2.13	Fri Aug 18 20:59:05 2006
+++ xoops2jp/html/modules/user/admin/templates/ranks_list.html	Sat Aug 19 14:55:45 2006
@@ -32,11 +32,11 @@
   <{foreach item=obj from=$objects}>
     <tr class="<{cycle values='odd,even'}>">
       <td class="user_list_id"><{$obj->getShow('rank_id')}></td>
-      <td><{$obj->getShow('rank_title')}></td>
-      <td style="text-align:right;"><{$obj->getShow('rank_min')}></td>
-      <td style="text-align:right;"><{$obj->getShow('rank_max')}></td>
-      <td><{$obj->getShow('rank_special')}></td>
-      <td><img src="<{$smarty.const.XOOPS_UPLOAD_URL}>/<{$obj->getShow('rank_image')}>" alt="<{$obj->getShow('rank_title')}>" title="<{$obj->getShow('rank_title')}>" /></td>
+      <td class="user_list_title"><{$obj->getShow('rank_title')}></td>
+      <td class="user_list_number"><{$obj->getShow('rank_min')}></td>
+      <td class="user_list_number"><{$obj->getShow('rank_max')}></td>
+      <td class="user_list_order"><{$obj->getShow('rank_special')}></td>
+      <td class="user_list_image"><img src="<{$smarty.const.XOOPS_UPLOAD_URL}>/<{$obj->getShow('rank_image')}>" alt="<{$obj->getShow('rank_title')}>" title="<{$obj->getShow('rank_title')}>" /></td>
       <td class="user_list_control">
         <a href="index.php?action=RanksEdit&amp;rank_id=<{$obj->getShow('rank_id')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
         <a href="index.php?action=RanksDelete&amp;rank_id=<{$obj->getShow('rank_id')}>"><img src="<{"icons/delete.gif"|theme}>" alt="<{$smarty.const._DELETE}>" title="<{$smarty.const._DELETE}>" /></a>
Index: xoops2jp/html/modules/user/admin/templates/group_member.html
diff -u xoops2jp/html/modules/user/admin/templates/group_member.html:1.1.2.19 xoops2jp/html/modules/user/admin/templates/group_member.html:1.1.2.20
--- xoops2jp/html/modules/user/admin/templates/group_member.html:1.1.2.19	Fri Aug 18 18:06:04 2006
+++ xoops2jp/html/modules/user/admin/templates/group_member.html	Sat Aug 19 14:55:45 2006
@@ -16,13 +16,13 @@
     <th><{$smarty.const._AD_USER_LANG_GROUP_AMMO}></th>
     <th><{$smarty.const._AD_USER_LANG_CONTROL}></th>
   </tr>
-  <tr class="odd" style="text-align:center;">
-    <td><img src="<{"icons/group.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_GROUP}>" title="<{$smarty.const._AD_USER_LANG_GROUP}>" /></td>
-    <td><{$group->getShow('groupid')}></td>
-    <td><b><{$group->getShow('name')}></b></td>
-    <td><{$group->getShow('description')}></td>
-    <td><{$group->getShow('group_type')}></td>
-    <td><{$group->getUserCount()|escape}></td>
+  <tr class="odd">
+    <td class="user_list_image"><img src="<{"icons/group.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_GROUP}>" title="<{$smarty.const._AD_USER_LANG_GROUP}>" /></td>
+    <td class="user_list_id"><{$group->getShow('groupid')}></td>
+    <td class="user_list_title"><{$group->getShow('name')}></td>
+    <td class="user_list_description"><{$group->getShow('description')}></td>
+    <td class="user_list_type"><{$group->getShow('group_type')}></td>
+    <td class="user_list_number"><{$group->getUserCount()|escape}></td>
     <td class="user_list_control">
       <a href="index.php?action=GroupEdit&amp;groupid=<{$group->getShow('groupid')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
       <{if $group->get('groupid') > $smarty.const.XOOPS_GROUP_ANONYMOUS }>
@@ -72,15 +72,15 @@
   </tr>
   <{foreach from=$noUsers item=user }>
     <tr class="<{cycle values="odd,even"}>">
-      <td style="text-align:center;"><input type="checkbox" name="uid[<{$user->getShow('uid')}>]" value="1" /></td>
-      <td style="text-align:center;"><img src="<{"icons/user.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_USER}>" title="<{$smarty.const._AD_USER_LANG_USER}>" /></td>
-      <td style="text-align:center;"><{$user->getShow('uid')}></td>
-      <td><b><{$user->getShow('uname')}></b></td>
-      <td><{$user->getShow('name')}></td>
-      <td><{$user->get('user_regdate')|xoops_formattimestamp}></td>
-      <td><{$user->get('last_login')|xoops_formattimestamp:l}></td>
-      <td style="text-align:right;"><{$user->getShow('posts')}></td>
-      <td style="text-align:right;"><{$user->getShow('level')}></td>
+      <td class="user_list_select"><input type="checkbox" name="uid[<{$user->getShow('uid')}>]" value="1" /></td>
+      <td class="user_list_image"><img src="<{"icons/user.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_USER}>" title="<{$smarty.const._AD_USER_LANG_USER}>" /></td>
+      <td class="user_list_id"><{$user->getShow('uid')}></td>
+      <td class="user_list_title"><{$user->getShow('uname')}></td>
+      <td class="user_list_name"><{$user->getShow('name')}></td>
+      <td class="user_list_date"><{$user->get('user_regdate')|xoops_formattimestamp}></td>
+      <td class="user_list_date"><{$user->get('last_login')|xoops_formattimestamp:l}></td>
+      <td class="user_list_number"><{$user->getShow('posts')}></td>
+      <td class="user_list_order"><{$user->getShow('level')}></td>
       <td class="user_list_control">
         <a href="./index.php?action=UserEdit&amp;uid=<{$user->getShow('uid')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
         <{if $user->get('uid') != 1 }>
@@ -123,15 +123,15 @@
   </tr>
   <{foreach from=$users item=user }>
     <tr class="<{cycle values="odd,even"}>">
-      <td style="text-align:center;"><input type="checkbox" name="uid[<{$user->getShow('uid')}>]" value="2" /></td>
-      <td class="user_list_id"><img src="<{"icons/user.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_USER}>" title="<{$smarty.const._AD_USER_LANG_USER}>" /></td>
+      <td class="user_list_select"><input type="checkbox" name="uid[<{$user->getShow('uid')}>]" value="2" /></td>
+      <td class="user_list_image"><img src="<{"icons/user.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_USER}>" title="<{$smarty.const._AD_USER_LANG_USER}>" /></td>
       <td class="user_list_id"><{$user->getShow('uid')}></td>
-      <td><b><{$user->getShow('uname')}></b></td>
-      <td><{$user->getShow('name')}></td>
-      <td><{$user->get('user_regdate')|xoops_formattimestamp}></td>
-      <td><{$user->get('last_login')|xoops_formattimestamp:l}></td>
-      <td style="text-align:right;"><{$user->getShow('posts')}></td>
-      <td style="text-align:right;"><{$user->getShow('level')}></td>
+      <td class="user_list_title"><{$user->getShow('uname')}></td>
+      <td class="user_list_name"><{$user->getShow('name')}></td>
+      <td class="user_list_date"><{$user->get('user_regdate')|xoops_formattimestamp}></td>
+      <td class="user_list_date"><{$user->get('last_login')|xoops_formattimestamp:l}></td>
+      <td class="user_list_number"><{$user->getShow('posts')}></td>
+      <td class="user_list_order"><{$user->getShow('level')}></td>
       <td class="user_list_control">
         <a href="index.php?action=UserEdit&amp;uid=<{$user->getShow('uid')}>&amp;op=modifyUser"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a> 
         <{if $user->get('uid') != 1 }>
Index: xoops2jp/html/modules/user/admin/templates/user_list.html
diff -u xoops2jp/html/modules/user/admin/templates/user_list.html:1.1.2.19 xoops2jp/html/modules/user/admin/templates/user_list.html:1.1.2.20
--- xoops2jp/html/modules/user/admin/templates/user_list.html:1.1.2.19	Fri Aug 18 18:06:04 2006
+++ xoops2jp/html/modules/user/admin/templates/user_list.html	Sat Aug 19 14:55:45 2006
@@ -37,14 +37,14 @@
   </tr>
   <{foreach item=user from=$objects}>
     <tr class="<{cycle values='odd,even'}>">
-      <td class="user_list_id"><img src="<{"icons/user.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_USER}>" title="<{$smarty.const._AD_USER_LANG_USER}>" /></td>
+      <td class="user_list_image"><img src="<{"icons/user.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_USER}>" title="<{$smarty.const._AD_USER_LANG_USER}>" /></td>
       <td class="user_list_id"><{$user->getShow('uid')}></td>
-      <td><a href="./index.php?action=UserView&amp;uid=<{$user->getShow('uid')}>"><{$user->getShow('uname')}></a></td>
-      <td><{$user->getShow('name')}></td>
-      <td><{$user->get('user_regdate')|xoops_formattimestamp}></td>
-      <td><{$user->get('last_login')|xoops_formattimestamp:l}></td>
-      <td style="text-align:right;"><{$user->getShow('posts')}></td>
-      <td style="text-align:right;"><{$user->getShow('level')}></td>
+      <td class="user_list_title"><a href="./index.php?action=UserView&amp;uid=<{$user->getShow('uid')}>"><{$user->getShow('uname')}></a></td>
+      <td class="user_list_title"><{$user->getShow('name')}></td>
+      <td class="user_list_date"><{$user->get('user_regdate')|xoops_formattimestamp}></td>
+      <td class="user_list_date"><{$user->get('last_login')|xoops_formattimestamp:l}></td>
+      <td class="user_list_number"><{$user->getShow('posts')}></td>
+      <td class="user_list_order"><{$user->getShow('level')}></td>
       <td class="user_list_control">
         <a href="./index.php?action=UserView&amp;uid=<{$user->getShow('uid')}>"><img src="<{"icons/property.gif"|theme}>" alt="<{$smarty.const._VIEW}>" title="<{$smarty.const._VIEW}>" /></a>
         <a href="./index.php?action=UserEdit&amp;uid=<{$user->getShow('uid')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
Index: xoops2jp/html/modules/user/admin/templates/group_list.html
diff -u xoops2jp/html/modules/user/admin/templates/group_list.html:1.1.2.13 xoops2jp/html/modules/user/admin/templates/group_list.html:1.1.2.14
--- xoops2jp/html/modules/user/admin/templates/group_list.html:1.1.2.13	Thu Aug 17 21:48:54 2006
+++ xoops2jp/html/modules/user/admin/templates/group_list.html	Sat Aug 19 14:55:45 2006
@@ -29,12 +29,12 @@
   </tr>
   <{foreach item=group from=$objects}>
     <tr class="<{cycle values='odd,even'}>">
-      <td class="user_list_id"><img src="<{"icons/group.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_GROUP}>" title="<{$smarty.const._AD_USER_LANG_GROUP}>" /></td>
+      <td class="user_list_image"><img src="<{"icons/group.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_GROUP}>" title="<{$smarty.const._AD_USER_LANG_GROUP}>" /></td>
       <td class="user_list_id"><{$group->getShow('groupid')}></td>
-      <td><b><{$group->getShow('name')}></b></td>
-      <td><{$group->getShow('description')}></td>
-      <td><{$group->getShow('group_type')}></td>
-      <td><{$group->getUserCount()|escape}></td>
+      <td class="user_list_title"><{$group->getShow('name')}></td>
+      <td class="user_list_description"><{$group->getShow('description')}></td>
+      <td class="user_list_type"><{$group->getShow('group_type')}></td>
+      <td class="user_list_number"><{$group->getUserCount()|escape}></td>
       <td class="user_list_control">
         <a href="index.php?action=GroupEdit&amp;groupid=<{$group->getShow('groupid')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
         <{if $group->get('groupid') > $smarty.const.XOOPS_GROUP_ANONYMOUS }>
Index: xoops2jp/html/modules/user/admin/templates/group_property.html
diff -u xoops2jp/html/modules/user/admin/templates/group_property.html:1.1.2.17 xoops2jp/html/modules/user/admin/templates/group_property.html:1.1.2.18
--- xoops2jp/html/modules/user/admin/templates/group_property.html:1.1.2.17	Fri Aug 18 18:06:04 2006
+++ xoops2jp/html/modules/user/admin/templates/group_property.html	Sat Aug 19 14:55:45 2006
@@ -16,13 +16,13 @@
     <th><{$smarty.const._AD_USER_LANG_GROUP_AMMO}></th>
     <th><{$smarty.const._AD_USER_LANG_CONTROL}></th>
   </tr>
-  <tr class="odd" style="text-align:center;">
-    <td><img src="<{"icons/group.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_GROUP}>" title="<{$smarty.const._AD_USER_LANG_GROUP}>" /></td>
-    <td><{$group->getShow('groupid')}></td>
-    <td><b><{$group->getShow('name')}></b></td>
-    <td><{$group->getShow('description')}></td>
-    <td><{$group->getShow('group_type')}></td>
-    <td><{$group->getUserCount()|escape}></td>
+  <tr class="odd">
+    <td class="user_list_image"><img src="<{"icons/group.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_GROUP}>" title="<{$smarty.const._AD_USER_LANG_GROUP}>" /></td>
+    <td class="user_list_id"><{$group->getShow('groupid')}></td>
+    <td class="user_list_title"><{$group->getShow('name')}></td>
+    <td class="user_list_description"><{$group->getShow('description')}></td>
+    <td class="user_list_type"><{$group->getShow('group_type')}></td>
+    <td class="user_list_number"><{$group->getUserCount()|escape}></td>
     <td class="user_list_control">
       <a href="index.php?action=GroupEdit&amp;groupid=<{$group->getShow('groupid')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
       <{if $group->get('groupid') > $smarty.const.XOOPS_GROUP_ANONYMOUS }>
@@ -51,15 +51,15 @@
     <th><{$smarty.const._AD_USER_LANG_CONTROL}></th>
   </tr>
   <{foreach from=$users item=user }>
-    <tr class="<{cycle values="odd,even"}>" style="text-align:center;">
-      <td class="user_list_id"><img src="<{"icons/user.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_USER}>" title="<{$smarty.const._AD_USER_LANG_USER}>" /></td>
+    <tr class="<{cycle values="odd,even"}>">
+      <td class="user_list_image"><img src="<{"icons/user.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_USER}>" title="<{$smarty.const._AD_USER_LANG_USER}>" /></td>
       <td class="user_list_id"><{$user->getShow('uid')}></td>
-      <td><b><{$user->getShow('uname')}></b></td>
-      <td><{$user->getShow('name')}></td>
-      <td><{$user->getShow('user_regdate')|xoops_formattimestamp}></td>
-      <td><{$user->getShow('last_login')|xoops_formattimestamp:l}></td>
-      <td style="text-align:right;"><{$user->getShow('posts')}></td>
-      <td style="text-align:right;"><{$user->getShow('level')}></td>
+      <td class="user_list_title"><{$user->getShow('uname')}></td>
+      <td class="user_list_name"><{$user->getShow('name')}></td>
+      <td class="user_list_date"><{$user->getShow('user_regdate')|xoops_formattimestamp}></td>
+      <td class="user_list_date"><{$user->getShow('last_login')|xoops_formattimestamp:l}></td>
+      <td class="user_list_number"><{$user->getShow('posts')}></td>
+      <td class="user_list_order"><{$user->getShow('level')}></td>
       <td class="user_list_control">
         <a href="./index.php?action=UserEdit&amp;uid=<{$user->getShow('uid')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a> 
         <{if $user->get('uid') != 1 }>
@@ -101,7 +101,7 @@
 <br />
 <{/if}>
 <table class="outer">
-  <tr class="head">
+  <tr>
     <th colspan="4"><{$smarty.const._AD_USER_LANG_PERM_GROUP_PERM_MODULE}></th>
   </tr>
   <tr>
@@ -133,7 +133,7 @@
 
 <{foreach key=i item=permissions from=$blockPermissions}>
 <table class="outer">
-  <tr class="head">
+  <tr>
     <th colspan="4"><{$smarty.const._AD_USER_LANG_PERM_GROUP_PERM_BLOCK}>
       <{if $i == 0}>( <{$smarty.const._LEFT}> )
       <{elseif $i == 1}>( <{$smarty.const._RIGHT}> )
Index: xoops2jp/html/modules/user/admin/templates/group_perm.html
diff -u xoops2jp/html/modules/user/admin/templates/group_perm.html:1.1.2.21 xoops2jp/html/modules/user/admin/templates/group_perm.html:1.1.2.22
--- xoops2jp/html/modules/user/admin/templates/group_perm.html:1.1.2.21	Thu Aug 17 21:48:54 2006
+++ xoops2jp/html/modules/user/admin/templates/group_perm.html	Sat Aug 19 14:55:45 2006
@@ -17,12 +17,12 @@
     <th><{$smarty.const._AD_USER_LANG_CONTROL}></th>
   </tr>
   <tr class="odd">
-    <td class="user_list_id"><img src="<{"icons/group.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_GROUP}>" title="<{$smarty.const._AD_USER_LANG_GROUP}>" /></td>
+    <td class="user_list_image"><img src="<{"icons/group.gif"|theme}>" alt="<{$smarty.const._AD_USER_LANG_GROUP}>" title="<{$smarty.const._AD_USER_LANG_GROUP}>" /></td>
     <td class="user_list_id"><{$group->getShow('groupid')}></td>
-    <td><b><{$group->getShow('name')}></b></td>
-    <td><{$group->getShow('description')}></td>
-    <td><{$group->getShow('group_type')}></td>
-    <td><{$group->getUserCount()|escape}></td>
+    <td class="user_list_title"><{$group->getShow('name')}></td>
+    <td class="user_list_description"><{$group->getShow('description')}></td>
+    <td class="user_list_type"><{$group->getShow('group_type')}></td>
+    <td class="user_list_number"><{$group->getUserCount()|escape}></td>
     <td class="user_list_control">
       <a href="index.php?action=GroupEdit&amp;groupid=<{$group->getShow('groupid')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
       <{if $group->get('groupid') > $smarty.const.XOOPS_GROUP_ANONYMOUS }>
Index: xoops2jp/html/modules/user/admin/templates/avatar_list.html
diff -u xoops2jp/html/modules/user/admin/templates/avatar_list.html:1.1.2.14 xoops2jp/html/modules/user/admin/templates/avatar_list.html:1.1.2.15
--- xoops2jp/html/modules/user/admin/templates/avatar_list.html:1.1.2.14	Thu Aug 17 21:48:54 2006
+++ xoops2jp/html/modules/user/admin/templates/avatar_list.html	Sat Aug 19 14:55:45 2006
@@ -39,14 +39,20 @@
   <{foreach item=obj from=$objects}>
     <tr class="<{cycle values='odd,even'}>">
       <td class="user_list_id"><{$obj->getShow('avatar_id')}></td>
-      <td><img src="<{$smarty.const.XOOPS_UPLOAD_URL}>/<{$obj->getShow('avatar_file')}>" alt="<{$obj->getShow('avatar_name')}>" title="<{$obj->getShow('avatar_name')}>" /></td>
-      <td><{$obj->getShow('avatar_name')}></td>
-      <td><{$obj->getShow('avatar_mimetype')}></td>
-      <td><{$obj->get('avatar_created')|xoops_formattimestamp:l}></td>
-      <td><{$obj->getShow('avatar_display')}></td>
-      <td><{$obj->getShow('avatar_weight')}></td>
-      <td><{$obj->getShow('avatar_type')}></td>
-      <td><{$obj->getUsingCount()|escape}></td>
+      <td class="user_list_image"><img src="<{$smarty.const.XOOPS_UPLOAD_URL}>/<{$obj->getShow('avatar_file')}>" alt="<{$obj->getShow('avatar_name')}>" title="<{$obj->getShow('avatar_name')}>" /></td>
+      <td class="user_list_title"><{$obj->getShow('avatar_name')}></td>
+      <td class="user_list_type"><{$obj->getShow('avatar_mimetype')}></td>
+      <td class="user_list_date"><{$obj->get('avatar_created')|xoops_formattimestamp:l}></td>
+      <td class="user_list_order">
+        <{if $obj->getShow('avatar_display') == 1}>
+          <{$smarty.const._YES}>
+        <{else}>
+          <{$smarty.const._NO}>
+        <{/if}>
+      </td>
+      <td class="user_list_order"><{$obj->getShow('avatar_weight')}></td>
+      <td class="user_list_type"><{$obj->getShow('avatar_type')}></td>
+      <td class="user_list_order"><{$obj->getUsingCount()|escape}></td>
       <td class="user_list_control">
         <a href="index.php?action=AvatarEdit&amp;avatar_id=<{$obj->getShow('avatar_id')}>"><img src="<{"icons/edit.gif"|theme}>" alt="<{$smarty.const._EDIT}>" title="<{$smarty.const._EDIT}>" /></a>
         <a href="index.php?action=AvatarDelete&amp;avatar_id=<{$obj->getShow('avatar_id')}>"><img src="<{"icons/delete.gif"|theme}>" alt="<{$smarty.const._DELETE}>" title="<{$smarty.const._DELETE}>" /></a>
Index: xoops2jp/html/modules/user/admin/templates/mailjob_list.html
diff -u xoops2jp/html/modules/user/admin/templates/mailjob_list.html:1.1.2.9 xoops2jp/html/modules/user/admin/templates/mailjob_list.html:1.1.2.10
--- xoops2jp/html/modules/user/admin/templates/mailjob_list.html:1.1.2.9	Thu Aug 17 21:48:54 2006
+++ xoops2jp/html/modules/user/admin/templates/mailjob_list.html	Sat Aug 19 14:55:45 2006
@@ -32,11 +32,23 @@
   <{foreach item=obj from=$objects}>
     <tr class="<{cycle values='odd,even'}>">
       <td class="user_list_id"><{$obj->getShow('mailjob_id')}></td>
-      <td><a href="./index.php?action=MailjobSend&amp;mailjob_id=<{$obj->getShow('mailjob_id')}>"><{$obj->getShow('title')}></a></td>
-      <td><{$obj->getShow('is_pm')}></td>
-      <td><{$obj->getShow('is_mail')}></td>
-      <td><{$obj->get('create_unixtime')|date_format:"%Y/%m/%d %H:%M"}></td>
-      <td>
+      <td class="user_list_title"><a href="./index.php?action=MailjobSend&amp;mailjob_id=<{$obj->getShow('mailjob_id')}>"><{$obj->getShow('title')}></a></td>
+      <td class="user_list_order">
+        <{if $obj->getShow('is_pm') == 1}>
+          <{$smarty.const._YES}>
+        <{else}>
+          <{$smarty.const._NO}>
+        <{/if}>
+      </td>
+      <td class="user_list_order">
+        <{if $obj->getShow('is_mail') == 1}>
+          <{$smarty.const._YES}>
+        <{else}>
+          <{$smarty.const._NO}>
+        <{/if}>
+      </td>
+      <td class="user_list_date"><{$obj->get('create_unixtime')|date_format:"%Y/%m/%d %H:%M"}></td>
+      <td class="user_list_number">
         <{if $obj->mUserCount > 0}>
           <span style='color:red;'><{$obj->mUserCount|escape}></span>
         <{else}>


xoops-cvslog メーリングリストの案内
Zurück zum Archiv-Index