|
|
|
|
|
|
|
<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 id="editLink" 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">full name</span>
|
|
|
|
<span>{user.fullname}</span>
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<span class="account-bio-label">website</span>
|
|
|
|
<span><a href="{user.website}">{user.website}</a></span>
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<span class="account-bio-label">location</span>
|
|
|
|
<span>{user.location}</span>
|
|
|
|
<br/>
|
|
|
|
|
|
|
|
<span class="account-bio-label">age</span>
|
|
|
|
<span>{user.age}</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">
|
|
|
|
|
|
|
|
var yourid = '{yourid}';
|
|
|
|
var theirid = '{theirid}';
|
|
|
|
|
|
|
|
(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()));
|
|
|
|
|
|
|
|
var editLink = $('#editLink');
|
|
|
|
if( yourid !== theirid)
|
|
|
|
editLink.addClass('hidden');
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
}());
|
|
|
|
</script>
|