diff --git a/TODO b/TODO index 1ab4f7e..89b931a 100644 --- a/TODO +++ b/TODO @@ -30,7 +30,7 @@ Todos: ----------------------------------------------------------------------------------- ✔ take cat to the vet url•https://www.yelp.com/search?find_desc=Cat+Vet&find_loc=Seattle%2C+WA @3h @done(2021-08-09 21:37) @project(Todos) ☐ @high ghihq•4 showing a linkme example @prjb - ☐ @today decide organization requirements @prja @woot + ☐ @today decide 1:2 organization requirements @prja @woot ☐ @today work with so-and-so on such-and-such @prja @prjb ☐ get thing-a-ma-bob Info from SME-guru @4h @prja ☐ add such-and-such CSS to project page @2h @prjb @f24 diff --git a/views/index.ejs b/views/index.ejs index 32bccba..e5c74e2 100644 --- a/views/index.ejs +++ b/views/index.ejs @@ -32,28 +32,28 @@ <% if (issues.blockers.length) { -%> section Blockers <% issues.blockers.forEach(b => { -%> - <%= b.title %> <%= b['tagstring'] %> :<%= b['color'] %>k<%= b['number'] %>, <%= b['startdate'] %>, <%= b['est'] %> + <%- `${b.title.replace(/[:#]/,'-')}` %> <%= b['tagstring'] %> :<%= b['color'] %>k<%= b['number'] %>, <%= b['startdate'] %>, <%= b['est'] %> <% }); -%> <% } -%> <% if (issues.milestones.length) { -%> section Milestones <% issues.milestones.forEach( t => { -%> - <%= t.title %> <%= t['tagstring'] %> :<%= t['color'] %>k<%= t['number'] %>, <%= t['startdate'] %>, <%= t['est'] %> + <%- `${t.title.replace(/[:#]/,'-')}` %> <%= t['tagstring'] %> :<%= t['color'] %>k<%= t['number'] %>, <%= t['startdate'] %>, <%= t['est'] %> <% }); -%> <% } -%> <% if (issues.open.active.length) { -%> section In Progress <% issues.open.active.forEach( t => { -%> - <%= t.title %> <%= t['tagstring'] %> :<%= t['color'] %>k<%= t['number'] %>, <%= t['startdate'] %>, <%= t['est'] %> + <%- `${t.title.replace(/[:#]/,'-')}` %> <%= t['tagstring'] %> :<%= t['color'] %>k<%= t['number'] %>, <%= t['startdate'] %>, <%= t['est'] %> <% }); -%> <% } -%> <% if (issues.open.pending.length) { -%> section Backlog <% issues.open.pending.forEach( t => { -%> - <%= t.title %> <%= t['tagstring'] %> :<%= t['color'] %>k<%= t['number'] %>, <%= t['startdate'] %>, <%= t['est'] %> + <%- `${t.title.replace(/[:#]/,'-')}` %> <%= t['tagstring'] %> :<%= t['color'] %>k<%= t['number'] %>, <%= t['startdate'] %>, <%= t['est'] %> <% }); -%> <% } -%>