sprint/templates/main.html
Egor Matveev c824e52878 fix
2022-02-02 23:33:45 +03:00

73 lines
3.3 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% extends 'base_main.html' %}
{% block title %}Главная{% endblock %}
{% block main %}
<table>
<tr>
<td>
<h2>Мои группы</h2>
</td>
{% if user.userinfo.can_create %}
<td>
<button style="margin-left: 20px;" class="btn btn-success" data-toggle="modal" data-target="#example"><i class="fa fa-plus"></i></button>
<div class="modal fade" id="example" tabindex="-1" role="dialog" aria-labelledby="exampleModalLongTitle" aria-hidden="true">
<div class="modal-dialog" role="document">
<form method="POST">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle">Создать новую группу</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="container-fluid">
<div class="row">
<div class="col-12">
{% csrf_token %}
<input type="text" name="name" placeholder="Имя группы">
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-danger" data-dismiss="modal"><i class="fa fa-times-circle"></i> Закрыть</button>
<button type="submit" class="btn btn-success"><i class="fa fa-plus-circle"></i> Создать</button>
</div>
</div>
</form>
</div>
</div>
</td>
{% endif %}
</tr>
</table>
{% for group in groups %}
<a href="/group?group_id={{ group.id }}">{{ group.name }}</a><br>
{% endfor %}
<hr><hr>
<h2>Топ задач сегодня</h2>
{% for task in top_tasks_today %}
<a href="/task?task_id={{ task.id }}">{{ task.name }} ({{ task.count }})</a>&emsp;<span class="badge badge-{{ task.solution.badge_style }}">{{ task.solution.number_result }}</span><br>
{% endfor %}
<hr><hr>
{% if undone_tasks %}
<h2>У тебя были попытки, попробуй решить задачи еще раз</h2>
{% for task in undone_tasks %}
<a href="/task?task_id={{ task.id }}">{{ task.name }}</a>&emsp;<span class="badge badge-{{ task.solution.badge_style }}">{{ task.solution.number_result }}</span><br>
{% endfor %}
<hr><hr>
{% endif %}
{% if new_tasks %}
<h2>Новые задачи</h2>
{% for task in new_tasks %}
<a href="/task?task_id={{ task.id }}">{{ task.name }}</a><br>
{% endfor %}
<hr><hr>
{% endif %}
<h2>Топ пользователей</h2>
{% for u in top_users %}
<a href="/account?username={{ u.user.username }}">{{ u.place }}. <img src="{{ u.profile_pic_url }}" width="50px" height="50px" style="border-radius: 50%; margin-right: 10px;">{{ u.user.username }} ({{ u.rating }})</a><br><br>
{% endfor %}
{% endblock %}