35 lines
No EOL
980 B
HTML
35 lines
No EOL
980 B
HTML
{% extends "templates/web.html" %}
|
|
|
|
{% block title %}{{ _("Profile") }}{% endblock %}
|
|
{% block header %}<h1>{{ _("Profile") }}</h1>{% endblock %}
|
|
|
|
{% block page_sidebar %}
|
|
{% include "templates/pages/web_sidebar.html" %}
|
|
{% endblock %}
|
|
|
|
{% block page_content %}
|
|
|
|
<div class="row your-account-info {% if pathname=="me" %} hidden-xs {% endif %} " style="min-height: 400px; padding-bottom: 50px;">
|
|
<div class="col-sm-4">
|
|
<span class="user-image-myaccount"></span>
|
|
<div>
|
|
<ul class="list-unstyled">
|
|
<li><a href="/update-password">
|
|
<h6 class="text-muted">{{ _("Reset Password") }}</h6>
|
|
</a></li>
|
|
<li><a href="/update-profile?name={{ user }}">
|
|
<h6 class="text-muted">{{ _("Edit Profile") }}</h6>
|
|
</a></li>
|
|
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-8 pull-left">
|
|
<div class="row">
|
|
<div class="col-xs-4 text-right text-muted">{{ _("Name") }}</div>
|
|
<div class="col-xs-8">{{ fullname }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %} |