minor style change
parent
c0169d0dab
commit
67136ec707
|
@ -202,9 +202,9 @@
|
|||
<input type="hidden" name="formkey" value="{{v|formkey}}">
|
||||
<label class="format btn btn-primary" for="upload-profile-background-file" style="margin-bottom:0!important">
|
||||
<i class="fas fa-image mr-1"></i>
|
||||
{% if v.profile_background %}
|
||||
{% if v.profile_background -%}
|
||||
{{v.profile_background}}
|
||||
{% else %}
|
||||
{% else -%}
|
||||
Upload Profile Background
|
||||
{% endif %}
|
||||
</label>
|
||||
|
@ -407,9 +407,9 @@
|
|||
|
||||
<div class="actionbtns">
|
||||
{% if v and v.id == u.id %}
|
||||
<a href="/settings/personal" class="btn btn-secondary ">Edit Profile</a>
|
||||
|
||||
<form id="upload-profile-background-mobile" action="/settings/profile_background" method="post" enctype="multipart/form-data">
|
||||
<div><a href="/settings/personal" class="btn btn-secondary ">Edit Profile</a></div>
|
||||
<div>
|
||||
<form class="mt-3" id="upload-profile-background-mobile" action="/settings/profile_background" method="post" enctype="multipart/form-data">
|
||||
<input type="hidden" name="formkey" value="{{v|formkey}}">
|
||||
<label class="format btn btn-primary" for="upload-profile-background-file-mobile" style="margin-bottom:0!important">
|
||||
<i class="fas fa-image mr-1"></i>
|
||||
|
@ -421,6 +421,7 @@
|
|||
</label>
|
||||
<input autocomplete="off" id="upload-profile-background-file-mobile" accept="image/*", type="file" name="file" onchange="this.form.submit()" hidden>
|
||||
</form>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if FEATURES['USERS_PROFILE_SONG'] and u.song and v and (v.id == u.id or v.mute and not u.unmutable) %}
|
||||
|
@ -472,7 +473,7 @@
|
|||
{{userpage_admintools.userAdminTools('mobile')}}
|
||||
{% endif %}
|
||||
|
||||
<div class="mt-2" id="profile-mobile--info">
|
||||
<div id="profile-mobile--info">
|
||||
<p id="profile-mobile--info--id">User ID: {{u.id}}</p>
|
||||
<p id="profile-mobile--info--spent">Coins spent: {{u.coins_spent}}</p>
|
||||
<p id="profile-mobile--info--truescore">True score: {{u.truescore}}</p>
|
||||
|
|
Loading…
Reference in New Issue