You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.4 KiB
Smarty
61 lines
1.4 KiB
Smarty
|
|
<div class="well">
|
|
<div class="alert" id="message" style="display:none">
|
|
<button type="button" class="close" data-dismiss="message">×</button>
|
|
<strong></strong>
|
|
<p></p>
|
|
</div>
|
|
|
|
<!-- BEGIN user -->
|
|
|
|
<div class="account-username-box">
|
|
<span class="account-username"><a href="/users/{user.username}">{user.username}</a></span>
|
|
<span class="pull-right"><a href="/users/{user.username}/edit">edit</a></span>
|
|
</div>
|
|
|
|
<div class="account-picture-block">
|
|
<img src="{user.picture}?s=128" />
|
|
</div>
|
|
|
|
<div class="account-bio-block">
|
|
<span class="account-bio-label">email</span>
|
|
<span>{user.email}</span>
|
|
<br/>
|
|
|
|
<span class="account-bio-label">member for</span>
|
|
<span>{user.joindate}</span>
|
|
<br/>
|
|
|
|
<span class="account-bio-label">reputation</span>
|
|
<span id='reputation'>{user.reputation}</span>
|
|
<br/>
|
|
|
|
<span class="account-bio-label">posts</span>
|
|
<span id='postcount'>{user.postcount}</span>
|
|
</div>
|
|
|
|
|
|
<!-- END user -->
|
|
|
|
|
|
|
|
</div>
|
|
<script type="text/javascript">
|
|
(function() {
|
|
|
|
function addCommas(text) {
|
|
return text.replace(/(\d)(?=(\d\d\d)+(?!\d))/g, "$1,");
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
var rep = $('#reputation');
|
|
rep.html(addCommas(rep.html()));
|
|
|
|
var postcount = $('#postcount');
|
|
postcount.html(addCommas(postcount.html()));
|
|
|
|
});
|
|
|
|
|
|
}());
|
|
</script> |