aboutsummaryrefslogtreecommitdiff
path: root/snakeplan/templates/projects/story_detail.html
blob: 4e73397d9850a3bb36cef3e0c4843e0ff2b7723b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}

{% block content %}

<h1>Story: {{ object.name }}</h1>

<h2>Descipton:</h2>
<p class="story_description">{{ object.description }}</p>

<h2>Tasks:</h2>

<ol>
    {% for task in tasks %}
    <li>
        <a href="/p/task/{{ task.id }}/">{{ task.name }}</a>
    </li>
    {% endfor %}
</ol>

{% endblock %}