2018-09-22 04:35:51 +00:00
|
|
|
{% extends "minecraft_manager/dashboard.html" %}
|
|
|
|
{% load static %}
|
2018-10-13 03:26:59 +00:00
|
|
|
{% block title %}IP{% endblock %}
|
|
|
|
{% block h1 %}<h1>{{ ip.ip }}</h1>{% endblock %}
|
2018-09-22 04:35:51 +00:00
|
|
|
{% block section %}
|
|
|
|
<div id="content">
|
|
|
|
<table id="model-table" class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Player</th>
|
|
|
|
<th>Last Used</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for i in ips %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{% url "player" %}{{ i.player.id }}">{{ i.player.username }}</a></td>
|
2018-09-23 04:36:37 +00:00
|
|
|
<td>{{ i.last_used_formatted }}</td>
|
2018-09-22 04:35:51 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
{% endblock section %}
|