]> git.datanom.net - wpp.git/blob - app/templates/user.html
Base user framework finished
[wpp.git] / app / templates / user.html
1 {% extends "base.html" %}
2
3 {% block title %}
4 {{ title }}
5 {% endblock %}
6
7 {% block content %}
8 {% include 'menu.html' %}
9 {% include 'flash.html' %}
10 <div class="well well-large" style="height: 140px;">
11 {% if user.avatar %}
12 <div class="pull-right">
13 <img src="{{ user.avatar(128) }}" class="img-polaroid">
14 </div>
15 {% endif %}
16 <h3>{{ user.name }}</h3>
17 {% if user.email %}<p>Email: {{ user.email }}</p>{% endif %}
18 {% if user.username %}<p>Username: {{ user.username }}</p>{% endif %}
19 {% if user.password %}<p>Password: {{ user.password }}</p>{% endif %}
20 {% if user.last_seen %}<p><em>Last seen: {{ user.last_seen }}</em></p>{% endif %}
21 </div>
22 {% endblock %}
This page took 0.058774 seconds and 6 git commands to generate.