63 lines
2.4 KiB
HTML
63 lines
2.4 KiB
HTML
{% extends "membership/membership_detail.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block title %} {% trans 'Ladder Score for' %} {{membership.user.username}} {% endblock %}
|
|
|
|
{% block score_list %}
|
|
<ul class="tabs grid_12">
|
|
<li class="active"><a href="{% url 'player-ladder-score' membership.user.username %}">{% trans "Ladder Hanchans" %}</a></li>
|
|
<li><a href="{% url 'player-kyu-score' membership.user.username %}">{% trans "Kyu Hanchans" %}</a></li>
|
|
<li><a href="{% url 'player-dan-score' membership.user.username %}">{% trans "Dan Hanchans" %}</a></li>
|
|
<li><a href="{% url 'player-invalid-score' membership.user.username %}">{% trans "Invalid Hanchans" %}</a></li>
|
|
</ul>
|
|
|
|
<div class="grid_12">
|
|
<h2>{% trans 'Hanchans that apply to the Ladder Score' %} - {{season.name}}</h2>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th rowspan="2">{% trans 'Date' %}</th>
|
|
<th rowspan="2">{% trans 'Event' %}</th>
|
|
<th rowspan="2">{% trans 'Start' %}<//th>
|
|
<th rowspan="2">{% trans 'Placement' %}</th>
|
|
<th colspan="4">{% trans 'Players' %}</th>
|
|
<th rowspan="2"></th>
|
|
</tr>
|
|
<tr>
|
|
<th>1.</th>
|
|
<th>2.</th>
|
|
<th>3.<//th>
|
|
<th>4.</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for result in player_list %}
|
|
<tr>
|
|
<td>{{ result.hanchan.start|date:'SHORT_DATE_FORMAT' }}</td>
|
|
<td><a href="{{ result.hanchan.get_absolute_url }}">{{ result.hanchan.event.name }}</a></td>
|
|
<td>{{ result.hanchan.start|time:'H:i' }}</td>
|
|
<td class="center">{{result.placement}}.</td>
|
|
{% for player in result.hanchan.player_set.select_related %}
|
|
<td class="center"><a href="{% url 'player-ladder-score' player.user.username %}?season={{season.id}}">{{player.user}}</a><br/> {{player.score}}</td>
|
|
{% endfor %}
|
|
<td>
|
|
{% if perms.mahjong_ranking.delete_hanchan %}
|
|
<a href="{% url 'delete-hanchan' result.hanchan.pk %}"><img src="{{STATIC_URL}}icons/table_delete.png" alt="{% trans 'Delete' %}" title="{% trans 'Delete Hanchan' %}"/>
|
|
{% endif %}
|
|
{% if perms.mahjong_ranking.change_hanchan %}
|
|
<a href="{% url 'edit-hanchan' result.hanchan.pk %}"><img src="{{STATIC_URL}}icons/table_edit.png" alt="{% trans 'Edit' %}" title="{% trans 'Edit Hanchan' %}"/>
|
|
{% endif %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
<tfooter>
|
|
<tr><td colspan="9" class="right">
|
|
<form action="{% url 'player-ladder-score' membership.user.username %}">
|
|
<label for="id_season">{% trans 'Season' %}:</label> {{seasons_select_form.season}} <button type="submit">{% trans 'Go' %}</button>
|
|
</form>
|
|
</td></tr>
|
|
</tfooter>
|
|
</table>
|
|
</div>
|
|
{% endblock %} |