diff --git a/web/beads_test.go b/web/beads_test.go index a019b766639ce44b8fccdca5d44831cfad1f5eb6..5756bfda80e603f26ecec418a6d5a90efedbe54c 100644 --- a/web/beads_test.go +++ b/web/beads_test.go @@ -299,7 +299,7 @@ if rec.Code != http.StatusOK { t.Fatalf("board: got %d, want 200; body=%s", rec.Code, rec.Body.String()) } body := rec.Body.String() - for _, want := range []string{"Rolling", "Lined Up", "Stalled", "Past Stand", "Ready to roll", "beads-marquee"} { + for _, want := range []string{"Rolling", "Lined Up", "Stalled", "Past Stand", "Ready to roll", "beads-summary"} { if !strings.Contains(body, want) { t.Errorf("board body missing %q", want) } diff --git a/web/templates/beads.html b/web/templates/beads.html index d58eb143b45b53bdd74fed945d929063a5ebde31..1cb8696245d4e6877d29c34d88f14d630ef078d9 100644 --- a/web/templates/beads.html +++ b/web/templates/beads.html @@ -1,22 +1,26 @@ {{define "content" -}} @@ -116,16 +104,16 @@ {{/* ---------------- detail pane ---------------- */}}

← Back to the parade

{{with .Data.Issue}}
-

- {{.ID}} {{.Title}} - {{.Lane}} -

-
- status: {{.Status}} - {{if .Priority}}P{{.Priority}}{{end}} - {{if .IssueType}}{{.IssueType}}{{end}} - {{if .Assignee}}@{{.Assignee}}{{end}} - {{range .Labels}}{{.}}{{end}} +

+ {{.ID}} {{.Title}} + {{.Lane}} +

+
+ status: {{.Status}} + {{if .Priority}}P{{.Priority}}{{end}} + {{if .IssueType}}{{.IssueType}}{{end}} + {{if .Assignee}}@{{.Assignee}}{{end}} + {{range .Labels}}{{.}}{{end}}
@@ -146,13 +134,13 @@

Depends on

{{if $.Data.DependsOn}} -
    +
      {{range $.Data.DependsOn}}
    • {{.IssueID}} {{if .Title}}— {{.Title}}{{end}} - {{.Type}} - {{if .Closed}}closed{{else}}{{.Status}}{{end}} + {{.Type}} + {{if .Closed}}closed{{else}}{{.Status}}{{end}}
    • {{end}}
    @@ -161,12 +149,12 @@

Depended on by

{{if $.Data.DependedOnBy}} -