diff --git a/code/ryzom/tools/server/ryzom_ams/ams_lib/ingame_templates/home.tpl b/code/ryzom/tools/server/ryzom_ams/ams_lib/ingame_templates/home.tpl
index 98b83958e..f6f414145 100644
--- a/code/ryzom/tools/server/ryzom_ams/ams_lib/ingame_templates/home.tpl
+++ b/code/ryzom/tools/server/ryzom_ams/ams_lib/ingame_templates/home.tpl
@@ -1,4 +1,5 @@
{block name=content}
+
| |
diff --git a/code/ryzom/tools/server/ryzom_ams/ams_lib/ingame_templates/settings.tpl b/code/ryzom/tools/server/ryzom_ams/ams_lib/ingame_templates/settings.tpl
new file mode 100644
index 000000000..6c75f4929
--- /dev/null
+++ b/code/ryzom/tools/server/ryzom_ams/ams_lib/ingame_templates/settings.tpl
@@ -0,0 +1,399 @@
+{block name=content}
+
+
+ |
+
+
+
+ | |
+
+ |
+ Change Settings |
+
+
+ | |
+
+
+ |
+
+
+
+
+
+ |
+
+ |
+ |
+ |
+
+
+
+
+
+
+
+
+
+ Change Password
+
+
+
+ |
+
+ |
+
+ |
+
+
+ |
+
+
+ |
+
+ |
+
+
+
+ |
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+{/block}
+
diff --git a/code/ryzom/tools/server/ryzom_ams/ams_lib/ingame_templates/show_user.tpl b/code/ryzom/tools/server/ryzom_ams/ams_lib/ingame_templates/show_user.tpl
index e3be8f662..d98d668ea 100644
--- a/code/ryzom/tools/server/ryzom_ams/ams_lib/ingame_templates/show_user.tpl
+++ b/code/ryzom/tools/server/ryzom_ams/ams_lib/ingame_templates/show_user.tpl
@@ -1,98 +1,163 @@
{block name=content}
-
- Profile of {$target_name}
-
-
-
- Email: |
- {$mail} |
-
-
-
- Role: |
-
- {if $userPermission eq 1}User{/if}
- {if $userPermission eq 2}Moderator{/if}
- {if $userPermission eq 3}Admin{/if}
- |
-
- {if $firstName neq ""}
-
- Firstname: |
- {$firstName} |
-
- {/if}
- {if $lastName neq ""}
-
- LastName: |
- {$lastName} |
-
- {/if}
- {if $country neq ""}
-
- Country: |
- {$country} |
-
- {/if}
- {if $gender neq 0}
-
- Gender: |
- {if $gender eq 1}
- ♂ |
- {else if $gender eq 2}
- ♀ |
- {/if}
-
- {/if}
-
-
- |
- Actions |
-
-
-
-
-
- ID |
- Title |
- Timestamp |
- Category |
- Status |
-
-
-
- {foreach from=$ticketlist item=ticket}
-
- {$ticket.tId} |
- {$ticket.title} |
- {$ticket.timestamp} |
- {$ticket.category} |
+
+
+ | |
+
+ |
+ Profile of {$target_name} |
+
+
+ | |
+
+
+ |
+
+
+
+
+
+ |
+
+ |
+ |
+ |
+
+
+
+
+
+
+
+
+
+ Info
+
+
+
+ Email: |
+ {$mail} |
+
+
+
+ Role: |
+
+ {if $userPermission eq 1}User{/if}
+ {if $userPermission eq 2}Moderator{/if}
+ {if $userPermission eq 3}Admin{/if}
+ |
+
+ {if $firstName neq ""}
+
+ Firstname: |
+ {$firstName} |
+
+ {/if}
+ {if $lastName neq ""}
+
+ LastName: |
+ {$lastName} |
+
+ {/if}
+ {if $country neq ""}
+
+ Country: |
+ {$country} |
+
+ {/if}
+ {if $gender neq 0}
+
+ Gender: |
+ {if $gender eq 1}
+ ♂ |
+ {else if $gender eq 2}
+ ♀ |
+ {/if}
+
+ {/if}
+
+
+ |
+
+ |
+
+ |
+
+
+
+
+
+ Tickets
+
+
+
+ ID |
+ Title |
+ Timestamp |
+ Category |
+ Status |
+
+
+ {foreach from=$ticketlist item=ticket}
+
+ {$ticket.tId} |
+ {$ticket.title} |
+ {$ticket.timestamp} |
+ {$ticket.category} |
+
+ {if $ticket.status eq 0} {/if} {$ticket.statusText} |
+
+ {/foreach}
+
+
+ |
+
+ |
+
+ |
+
+ |
+
+
+
+ |
- {if $ticket.status eq 0} {/if} {$ticket.statusText} |
-
- {/foreach}
-
-
-
- |
{/block}
|