|
|
|
@ -8,22 +8,17 @@
@@ -8,22 +8,17 @@
|
|
|
|
|
{% endblock %} |
|
|
|
|
|
|
|
|
|
{% block player_app_content %} |
|
|
|
|
<h1>{{ game.name }}: {{ current_user.name }}</h1> |
|
|
|
|
{% include '_game_player_info.html' %} |
|
|
|
|
<h2>Bunnies:</h2> |
|
|
|
|
<a href="{{ url_for('main.catch_bunny', game_name=game.name) }}"> |
|
|
|
|
<button class="btn btn-success">Catch Bunny</button> |
|
|
|
|
</a> |
|
|
|
|
<div class="table-responsive"> |
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-xs-0 col-md-1"></div> |
|
|
|
|
|
|
|
|
|
<div class="col-xs-12 col-md-7"> |
|
|
|
|
<h2>Bunnies</h2> |
|
|
|
|
<div class="table"> |
|
|
|
|
<table class="table"> |
|
|
|
|
<thead> |
|
|
|
|
<tr> |
|
|
|
|
<th scope="col">Player Name</th> |
|
|
|
|
<th scope="col">Times Caught |
|
|
|
|
<span style="font-size: smaller;"> |
|
|
|
|
(<span style="color:green;">Accepted</span>/<span style="color:red;">Denied</span>/<span style="color:gray;">Not reviewed</span>) |
|
|
|
|
</span> |
|
|
|
|
</th> |
|
|
|
|
<th scope="col">Times Caught</th> |
|
|
|
|
<th scope="col">Last location</th> |
|
|
|
|
<th scope="col"></th> |
|
|
|
|
</tr> |
|
|
|
@ -43,15 +38,28 @@
@@ -43,15 +38,28 @@
|
|
|
|
|
{% endwith %}</td> |
|
|
|
|
<td> |
|
|
|
|
<a href="{{ url_for('main.catch_bunny', game_name=game.name, bunny_name=bunny.user.name) }}"> |
|
|
|
|
<button class="btn btn-success">Catch</button> |
|
|
|
|
<button class="btn btn-success btn-sm">Catch</button> |
|
|
|
|
</a> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
|
{% endfor %} |
|
|
|
|
</tbody> |
|
|
|
|
</table> |
|
|
|
|
<span style="font-size: smaller;"> |
|
|
|
|
(<span style="color:green;">Accepted</span>/<span style="color:red;">Denied</span>/<span style="color:gray;">Not reviewed</span>) |
|
|
|
|
</span> |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
<div class="col-xs-12 col-md-3"> |
|
|
|
|
{% include '_game_player_info.html' %} |
|
|
|
|
</div> |
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
<div class="row"> |
|
|
|
|
<div class="col-xs-1 col-md-1"></div> |
|
|
|
|
<div id="map" style=" height: 500px; border-radius: 10px; " class="col-xs-10 col-md-10"></div> |
|
|
|
|
<div class="col-xs-1 col-md-1"></div> |
|
|
|
|
</div> |
|
|
|
|
<div id="map" style=" height: 500px; border-radius: 10px; " class="col-md-6 col-xs-12"></div> |
|
|
|
|
|
|
|
|
|
{% endblock %} |
|
|
|
|
|
|
|
|
|