Standardize title attributes for uss/tasks/issues
parent
24cc5ff366
commit
1cc3d34e1a
|
@ -5,7 +5,7 @@ div.taskboard-task-inner
|
|||
p.taskboard-text
|
||||
a.task-assigned(href="", title="Assign task")
|
||||
span.task-num(tg-bo-ref="task.ref")
|
||||
a.task-name(href="", title="See task details", ng-bind="task.subject",
|
||||
a.task-name(href="", title="#{{ ::task.ref }} {{ ::task.subject }}", ng-bind="task.subject",
|
||||
tg-nav="project-tasks-detail:project=project.slug,ref=task.ref")
|
||||
a.icon.icon-edit(tg-check-permission="modify_task",
|
||||
href="", title="Edit task")
|
||||
|
|
|
@ -12,7 +12,7 @@ section.issues-table.basic-table(ng-class="{empty: !issues.length}")
|
|||
div.level-field(tg-listitem-severity="issue")
|
||||
div.level-field(tg-listitem-priority="issue")
|
||||
div.subject
|
||||
a(href="", tg-nav="project-issues-detail:project=project.slug,ref=issue.ref", title="{{ ::issue.subject }}")
|
||||
a(href="", tg-nav="project-issues-detail:project=project.slug,ref=issue.ref", title="#{{ ::issue.ref }} {{ ::issue.subject }}")
|
||||
span(tg-bo-ref="issue.ref")
|
||||
span(ng-bind="issue.subject")
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ div.kanban-task-inner(ng-class="{'task-archived': us.isArchived}")
|
|||
div.task-text(ng-hide="us.isArchived")
|
||||
a.task-assigned(href="", title="Assign User Story")
|
||||
span.task-num(tg-bo-ref="us.ref")
|
||||
a.task-name(href="", title="See user story detail", ng-bind="us.subject",
|
||||
a.task-name(href="", title="#{{ ::us.ref }} {{ us.subject }}", ng-bind="us.subject",
|
||||
tg-nav="project-userstories-detail:project=project.slug,ref=us.ref")
|
||||
|
||||
p.task-points(href="", title="Total Us points")
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
div(class="tasks")
|
||||
div(class="task-name")
|
||||
span(class="icon icon-iocaine")
|
||||
a(tg-nav="project-tasks-detail:project=project.slug,ref=task.ref" title!="<%- task.ref %> <%- task.subject %>" class="clickable")
|
||||
a(tg-nav="project-tasks-detail:project=project.slug,ref=task.ref" title!="#<%- task.ref %> <%- task.subject %>" class="clickable")
|
||||
span #<%- task.ref %>
|
||||
span <%- task.subject %>
|
||||
div(class="task-settings")
|
||||
|
|
Loading…
Reference in New Issue