1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-03 06:55:03 +03:00
This commit is contained in:
Denis Shakhov 2012-04-22 14:23:34 +07:00
parent 3b30509927
commit bf4cda9a40
5 changed files with 127 additions and 9 deletions

View file

@ -637,7 +637,7 @@ return array(
'settings_profile_foto_delete' => 'Удалить',
'settings_profile_photo_change' => 'Изменить фотографию',
'settings_profile_photo_upload' => 'Загрузить фотографию',
'settings_profile_submit' => 'сохранить профиль',
'settings_profile_submit' => 'Сохранить',
'settings_profile_submit_ok' => 'Профиль успешно сохранён',
'settings_invite' => 'Управление приглашениями',
'settings_invite_notice' => 'Вы можете пригласить на сайт своих друзей и знакомых, для этого просто укажите их e-mail и нажмите кнопку',

View file

@ -53,7 +53,7 @@
{hook run='form_settings_account_end'}
<button name="submit_account_edit" class="button button-primary" />{$aLang.settings_account_submit}</button>
<button name="submit_account_edit" class="button button-primary" />{$aLang.settings_profile_submit}</button>
</form>
{hook run='settings_account_end'}

View file

@ -9,8 +9,6 @@
{include file='menu.settings.tpl'}
<small class="note note-header input-width-400">{$aLang.settings_tuning_notice}:</small>
{hook run='settings_tuning_begin'}
<form action="{router page='settings'}tuning/" method="POST" enctype="multipart/form-data">
@ -18,17 +16,19 @@
<input type="hidden" name="security_ls_key" value="{$LIVESTREET_SECURITY_KEY}" />
<p>
<fieldset>
<legend>{$aLang.settings_tuning_notice}</legend>
<label><input {if $oUserCurrent->getSettingsNoticeNewTopic()}checked{/if} type="checkbox" id="settings_notice_new_topic" name="settings_notice_new_topic" value="1" class="input-checkbox" /> {$aLang.settings_tuning_notice_new_topic}</label>
<label><input {if $oUserCurrent->getSettingsNoticeNewComment()}checked{/if} type="checkbox" id="settings_notice_new_comment" name="settings_notice_new_comment" value="1" class="input-checkbox" /> {$aLang.settings_tuning_notice_new_comment}</label>
<label><input {if $oUserCurrent->getSettingsNoticeNewTalk()}checked{/if} type="checkbox" id="settings_notice_new_talk" name="settings_notice_new_talk" value="1" class="input-checkbox" /> {$aLang.settings_tuning_notice_new_talk}</label>
<label><input {if $oUserCurrent->getSettingsNoticeReplyComment()}checked{/if} type="checkbox" id="settings_notice_reply_comment" name="settings_notice_reply_comment" value="1" class="input-checkbox" /> {$aLang.settings_tuning_notice_reply_comment}</label>
<label><input {if $oUserCurrent->getSettingsNoticeNewFriend()}checked{/if} type="checkbox" id="settings_notice_new_friend" name="settings_notice_new_friend" value="1" class="input-checkbox" /> {$aLang.settings_tuning_notice_new_friend}</label>
</p>
</fieldset>
{hook run='form_settings_tuning_end'}
<input type="submit" name="submit_settings_tuning" value="{$aLang.settings_tuning_submit}" class="button" />
<button name="submit_settings_tuning" class="button button-primary">{$aLang.settings_profile_submit}</button>
</form>
{hook run='settings_tuning_end'}

File diff suppressed because one or more lines are too long

View file

@ -9,7 +9,7 @@
.profile .vote-label { text-transform: uppercase; text-align: right; font-size: 11px; color: #aaa; }
.profile .count { font-size: 34px; line-height: 1em; font-weight: bold; text-align: right; }
.profile .vote { position: absolute; top: 0; right: 130px; background: #fff; }
.profile .vote { position: absolute; top: 0; right: 140px; background: #fff; }
.profile .vote .vote-count { padding-left: 25px; display: block; }
.profile .vote .vote-up { position: absolute; top: 22px; left: 0; display: none; }
.profile .vote .vote-down { position: absolute; top: 35px; left: 0; display: none; }