roadmap.git

ref: 20900950466bb8453e94868960262cf20b8d2bfb

./task.html


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!DOCTYPE html>
<html>
  <head>
    <title>Roadmap {.Path}</title>
  </head>
  <body>
    <nav>{{ .Path }}</path>
    <h1>{{ .Summary }}</h1>
    <p>{{ .Status }}</p> <!-- assignee -->
    <p>#{{ .Tags }}</p>
    <p>{{ .Description }}</p>
    <hr/>
    <div> <!-- flex -->
      {{ range .Statuses }}
      <div> <!-- inline -->
        <div>{{ . }}</div>
        {{ range .Subtasks.{{.}} }} <!-- func ret: map[status][]Task, tasks sorted by priority -->
        <div>
        <a href="{{ .Path }}">{{ .Path }}</a>
        <p>{{ .Summary }}</p>
        <!-- what else: tags, assignee -->
        </div>
      </div>
    </div>  
  </body>
</html>