31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
{% extends "templates/web.html" %}
|
|
|
|
{% block title %}{{ _("My Account") }}{% endblock %}
|
|
{% block header %}<h1>{{ _("My Account") }}</h1>{% endblock %}
|
|
|
|
{% block page_content %}
|
|
<div class="row your-account-info d-none d-sm-block">
|
|
<div class="col-sm-4">
|
|
<ul class="list-unstyled">
|
|
<li><a href="/update-password">{{ _("Reset Password") }}</a></li>
|
|
<li><a href="/update-profile?name={{ user }}">{{ _("Edit Profile") }}</a></li>
|
|
<li><a href="/third_party_apps">{{ _("Manage Third Party Apps") }}</a></li>
|
|
{% if frappe.db.get_single_value("Website Settings", "show_account_deletion_link") %}
|
|
<li><a href="/request-for-account-deletion?new=1">{{ _("Request for Account Deletion") }}</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="row d-block d-sm-none">
|
|
<div class="col-12">
|
|
<ul class="list-group">
|
|
{% for item in sidebar_items -%}
|
|
<a class="list-group-item" href="{{ item.route }}"
|
|
{% if item.target %}target="{{ item.target }}"{% endif %}>
|
|
{{ _(item.title or item.label) }}
|
|
</a>
|
|
{%- endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|