Vulcan/client/views/users/user_profile.html

28 lines
No EOL
646 B
HTML

<template name="user_profile">
<div class="grid">
{{#with user}}
<div class="user-profile grid-block">
<table>
<tr>
<td colspan="2"><span class="user-avatar" style="background-image:url({{avatarUrl}});"></span></td>
</tr>
<tr>
<td>{{i18n "Name"}}: </td>
<td>{{username}}</td>
</tr>
<tr>
<td>{{i18n "Member since"}}: </td>
<td>{{createdAtFormatted}}</td>
</tr>
<tr>
<td>{{i18n "Bio"}}: </td>
<td>{{profile.bio}}</td>
</tr>
</table>
{{#if isCurrentUser}}
<a href="/users/{{_id}}/edit">{{i18n "Edit profile"}}</a>
{{/if}}
</div>
{{/with}}
</div>
</template>