mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-20 05:13:54 -07:00
Minor improvements (#715)
This commit is contained in:
parent
d9d38935b6
commit
383ab0d356
10 changed files with 109 additions and 104 deletions
|
@ -15,5 +15,5 @@ indent_size = 2
|
||||||
[*.{diff,md}]
|
[*.{diff,md}]
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
|
|
||||||
[*.php]
|
[*.{php,tpl}]
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
<br/>
|
<br/>
|
||||||
|
|
||||||
<form method="post" action="{S_USER_ACTION}" onSubmit="return checkForm(this);">
|
<form method="post" action="{S_USER_ACTION}" onSubmit="return checkForm(this);">
|
||||||
|
|
||||||
<table class="forumline">
|
<table class="forumline">
|
||||||
<tr>
|
<tr>
|
||||||
<th colspan="2">{L_COMPOSE}</th>
|
<th colspan="2">{L_COMPOSE}</th>
|
||||||
|
@ -41,11 +40,11 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="catBottom" colspan="2"><input type="submit" value="{L_SEND_EMAIL}" name="submit" class="mainoption"/>
|
<td class="catBottom" colspan="2"><input type="submit" value="{L_SEND_EMAIL}" name="submit"
|
||||||
|
class="mainoption"/>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
function manage_group(mode, value) {
|
function manage_group(mode, value) {
|
||||||
ajax.exec({
|
ajax.exec({
|
||||||
action : 'manage_group',
|
action: 'manage_group',
|
||||||
mode : mode,
|
mode: mode,
|
||||||
group_id : {GROUP_ID},
|
group_id: {GROUP_ID},
|
||||||
value : value
|
value: value
|
||||||
});
|
});
|
||||||
ajax.callback.manage_group = function(data) {
|
ajax.callback.manage_group = function (data) {
|
||||||
if(data.remove_avatar) {
|
if (data.remove_avatar) {
|
||||||
$('div#avatar').html(data.remove_avatar);
|
$('div#avatar').html(data.remove_avatar);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<h1 class="pagetitle">{PAGE_TITLE}<!-- IF GROUP_NAME --> :: {GROUP_NAME}<!-- ENDIF --></h1>
|
<h1 class="pagetitle">{PAGE_TITLE}<!-- IF GROUP_NAME --> :: {GROUP_NAME}<!-- ENDIF --></h1>
|
||||||
|
|
|
@ -222,7 +222,7 @@ ajax.callback.gen_passkey = function(data){
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
</p>
|
</p>
|
||||||
<!-- IF BIRTHDAY_ICON --><div class="mrg_8">{BIRTHDAY_ICON}</div><!-- ENDIF -->
|
<!-- IF BIRTHDAY_ICON --><div class="mrg_8">{BIRTHDAY_ICON}</div><!-- ENDIF -->
|
||||||
<h4 class="cat border bw_TB" id="username">{L_CONTACT} <span class="editable bold">{USERNAME}</span></h4>
|
<h4 class="cat border bw_TB">{L_CONTACT} {USERNAME}</span></h4>
|
||||||
|
|
||||||
<div class="spacer_4"></div>
|
<div class="spacer_4"></div>
|
||||||
|
|
||||||
|
@ -293,6 +293,12 @@ ajax.callback.gen_passkey = function(data){
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<table class="user_details borderless w100">
|
<table class="user_details borderless w100">
|
||||||
|
<tr>
|
||||||
|
<th>{L_USERNAME}:</th>
|
||||||
|
<td id="username">
|
||||||
|
<span class="editable bold">{USERNAME}</span>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<!-- IF SHOW_ROLE -->
|
<!-- IF SHOW_ROLE -->
|
||||||
<tr>
|
<tr>
|
||||||
<th>{L_ROLE}</th>
|
<th>{L_ROLE}</th>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue