ingame dashboard also fixed!
--HG-- branch : quitta-gsoc-2013
This commit is contained in:
parent
af6c57ff52
commit
3dc513e868
4 changed files with 49 additions and 1 deletions
|
@ -14,6 +14,9 @@ title_bg_color = "#303030"
|
|||
;default info text color
|
||||
info_color = "#00CED1"
|
||||
|
||||
;notification color
|
||||
notification_color = "red"
|
||||
|
||||
;Account (user/admin/mod) name color
|
||||
team_color = "red"
|
||||
user_color = "green"
|
||||
|
|
|
@ -27,12 +27,38 @@
|
|||
<tr valign="middle">
|
||||
<td>
|
||||
<table width="100%" height="100%" cellpadding="10">
|
||||
<tr><td>
|
||||
<table width="100%" bgcolor="{$main_tbl_color}" border="2">
|
||||
<tr><td>
|
||||
<table cellpadding="10">
|
||||
<tr><td>
|
||||
<table width="100%" cellpadding="3" border="2">
|
||||
<tr>
|
||||
<td width="25%" align = "center" ><font color="{$info_color}">Tickets Waiting for Direct Action</font></td>
|
||||
<td width="25%" align = "center" ><font color="{$info_color}">Tickets Todo</font></td>
|
||||
<td width="25%" align = "center" ><font color="{$info_color}">Newest Ticket</font></td>
|
||||
<td width="25%" align = "center" ><font color="{$info_color}">Total amount of Tickets</font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="25%" align = "center" ><a href="index.php?page=show_queue&get=create&userid={$user_id}&groupid=1&what=waiting_for_support&how=assigned&who=user"><font color="{$notification_color}">{$nrAssignedWaiting}</font></a></td>
|
||||
<td width="25%" align = "center" ><a href="index.php?page=show_queue&get=todo"><font color="{$notification_color}">{$nrToDo}</font></a></td>
|
||||
<td width="25%" align = "center" ><a href="index.php?page=show_ticket&id={$newestTicketId}"><font color="{$notification_color}">{$newestTicketTitle}</font></a></td>
|
||||
<td width="25%" align = "center" ><a href="index.php?page=show_queue&get=all"><font color="{$notification_color}">{$nrTotalTickets}</font></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
|
||||
<tr><td>
|
||||
<table width="100%" bgcolor="{$main_tbl_color}" border="2">
|
||||
<tr><td>
|
||||
<table cellpadding="10">
|
||||
<tr><td>
|
||||
<p><h3>{$home_info}</h3></p>
|
||||
<p> This is the GSOC project of Daan Janssens mentored by Matthew Lagoe.</p>
|
||||
</td></tr>
|
||||
</table>
|
||||
</td></tr>
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
home_title = "Introduction"
|
||||
home_info = "Welcome to the Ryzom Core - Account Management System"
|
||||
|
||||
|
||||
[settings]
|
||||
|
||||
[syncing]
|
||||
|
|
|
@ -43,6 +43,24 @@
|
|||
</div>
|
||||
<div class="box-content">
|
||||
<p><strong>{$home_info}</strong></p>
|
||||
<p>This is the GSOC project of Daan Janssens mentored by Matthew Lagoe.</p>
|
||||
<p>The features as admin covered in this project are:</p>
|
||||
<ul>
|
||||
<li>Manage user accounts</li>
|
||||
<li>Make users moderator or admin</li>
|
||||
<li>browse user's tickets</li>
|
||||
<li>Create a new ticket for a specific user as admin</li>
|
||||
<li>Create a new support group (and link an email to it)</li>
|
||||
<li>Add mods to support groups</li>
|
||||
<li>Assign ticket to you</li>
|
||||
<li>Forward ticket to a support group</li>
|
||||
<li>Add hidden messages to a ticket only viewable by other mods</li>
|
||||
<li>Browse ticket queues or create one dynamically</li>
|
||||
<li>Sync changes after the game server is back up after being down for a while</li>
|
||||
<li>Browse the log of a ticket</li>
|
||||
<li>Browse additional info sent along when a ticket is created ingame</li>
|
||||
<li>All the above can be done while ingame too</li>
|
||||
</ul>
|
||||
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue