1
{% extends "base.html" %}
13
{% block extra_head %}
14
<link rel="stylesheet" type="text/css" media="all" href="{% static 'css/profile.css' %}" />{{ block.super}}
17
{% block content_tabbing %}
18
<ul class="tab-list small">
19
{% if profile.user and user != profile.user %}
20
{% if not profile.deleted %}
22
<a {% block send_pm %}{% endblock %} href="{% url 'messages_compose_to' profile.user %}">Send PM</a>
27
<a {% block profile %}{% endblock %} href="{% url 'profile_view' %}">Profile</a>
30
<a {% block edit_profile %}{% endblock %} href="{% url 'profile_edit' %}">Edit Profile</a>
33
<a {% block notifications %}{% endblock %} href="{% url 'notification_notices' %}">E-Mail settings</a>
36
<a {% block scheduling %}{% endblock %} href="{% url 'scheduling_main' %}">Game Scheduler</a>
38
<li><a href="{% url 'scheduling_scheduling' %}">Define your playtime</a></li>
39
<li><a href="{% url 'scheduling_find' %}">Show playtimes</a></li>
43
<a {% block messages %}{% endblock %} href="{% url 'messages_inbox' %}" title="Your private messages">Messages</a>