bornhack-website/src/teams/templates/task_detail.html

25 lines
757 B
HTML
Raw Normal View History

{% extends 'team_base.html' %}
2017-11-23 22:09:14 +00:00
{% load commonmark %}
{% block title %}
{{ task.name }}
{% endblock %}
{% block team_content %}
2017-11-23 22:09:14 +00:00
<div class="panel panel-default">
<div class="panel-heading"><h4>Task: {{ task.name }} ({% if not task.completed %}Not {% endif %}Completed)</h4></div>
<div class="panel-body">
{{ task.description|untrustedcommonmark }}
<hr>
<ul>
<li>Start: {{ task.when.lower|default:"N/A" }}<br>
<li>Finish: {{ task.when.upper|default:"N/A" }}<br>
</ul>
</div>
2018-08-06 08:17:22 +00:00
<div class="panel-footer"><i>This task belongs to the <a href="{% url 'teams:general' team_slug=task.team.slug camp_slug=task.team.camp.slug %}">{{ task.team.name }} Team</a></i></div>
2017-11-23 22:09:14 +00:00
</div>
{% endblock %}