1
{% extends 'pybb/base.html' %}
6
<h1>{% trans "Profile editing" %}</h1>
7
{% if profile.avatar %}
8
<img src="{{ profile.avatar.url }}" />
10
<p><a href="{% url auth_password_change %}">{% trans "Change the password" %}</a></p>
11
{#<p><a href="{% url auth_email_change %}">{% trans "Change the email" %}</a></p>#}
12
<p><a href="{% url pybb_pm_inbox %}">{% trans "Inbox" %}</a></p>
13
<p><a href="{% url pybb_pm_outbox %}">{% trans "outbox" %}</a></p>
14
<form method="post" enctype="multipart/form-data">
16
<legend>{% trans "Profile editing" %}</lenged>
18
<p><input type="submit" value="{% trans "Save" %}" /></p>
21
<h1>{% trans "Subscriptions on topics" %}</h1>
23
{% for sub in user.subscriptions.all %}
28
<a href="{% url pybb_delete_subscription sub.id %}">{% trans "delete" %}</a>