29 lines
839 B
HTML
29 lines
839 B
HTML
|
<a href="{% url 'profiles:detail' %}" class="btn btn-black">
|
||
|
Profile
|
||
|
</a>
|
||
|
<a href="{% url 'account_change_password' %}" class="btn btn-black">
|
||
|
Change password
|
||
|
</a>
|
||
|
<a href="{% url 'account_email' %}" class="btn btn-black">
|
||
|
Manage emails
|
||
|
</a>
|
||
|
{% if user.is_authenticated and user.orders.exists %}
|
||
|
<a href="{% url 'shop:order_list' %}" class="btn btn-black">
|
||
|
Orders
|
||
|
</a>
|
||
|
{% if has_tickets %}
|
||
|
<a href="{% url 'shop:ticket_list' %}" class="btn btn-black">
|
||
|
Tickets
|
||
|
</a>
|
||
|
{% endif %}
|
||
|
{% if user.creditnotes.exists %}
|
||
|
<a href="{% url 'shop:creditnote_list' %}" class="btn btn-black">
|
||
|
Credit Notes
|
||
|
</a>
|
||
|
{% endif %}
|
||
|
{% endif %}
|
||
|
<a href="{% url 'account_logout' %}" class="btn btn-black">
|
||
|
Logout
|
||
|
</a>
|
||
|
|