ingame dashboard also fixed!

This commit is contained in:
Quitta 2013-08-29 22:19:37 +02:00
parent a86f192c84
commit 01f6d6fabd
4 changed files with 49 additions and 1 deletions

View file

@ -14,6 +14,9 @@ title_bg_color = "#303030"
;default info text color ;default info text color
info_color = "#00CED1" info_color = "#00CED1"
;notification color
notification_color = "red"
;Account (user/admin/mod) name color ;Account (user/admin/mod) name color
team_color = "red" team_color = "red"
user_color = "green" user_color = "green"

View file

@ -27,12 +27,38 @@
<tr valign="middle"> <tr valign="middle">
<td> <td>
<table width="100%" height="100%" cellpadding="10"> <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> <tr><td>
<table width="100%" bgcolor="{$main_tbl_color}" border="2"> <table width="100%" bgcolor="{$main_tbl_color}" border="2">
<tr><td> <tr><td>
<table cellpadding="10"> <table cellpadding="10">
<tr><td> <tr><td>
<p><h3>{$home_info}</h3></p> <p><h3>{$home_info}</h3></p>
<p> This is the GSOC project of Daan Janssens mentored by Matthew Lagoe.</p>
</td></tr> </td></tr>
</table> </table>
</td></tr> </td></tr>

View file

@ -5,6 +5,7 @@
home_title = "Introduction" home_title = "Introduction"
home_info = "Welcome to the Ryzom Core - Account Management System" home_info = "Welcome to the Ryzom Core - Account Management System"
[settings] [settings]
[syncing] [syncing]

View file

@ -43,7 +43,25 @@
</div> </div>
<div class="box-content"> <div class="box-content">
<p><strong>{$home_info}</strong></p> <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 class="clearfix"></div>
</div> </div>
</div> </div>