diff --git a/progit/templates/issues.html b/progit/templates/issues.html index a3022c4..e872502 100644 --- a/progit/templates/issues.html +++ b/progit/templates/issues.html @@ -15,11 +15,12 @@ {% if status and status != 'Open' %} + repo=repo.name, tags=tags, author=author, assignee=assignee) }}"> (Open) {% else %} + repo=repo.name, status='Closed', tags=tags, author=author, + assignee=assignee) }}"> (Closed) {% endif %} @@ -46,7 +47,8 @@ Tags: {% for tag in tag_list %} {{ tag.tag }}{% if not loop.last %},{% endif %} {% endfor %} @@ -59,12 +61,14 @@ Title Opened by (reset) + repo=repo.name, tags=tags, assignee=assignee, + status=status) }}">reset) Opened on Assigned to (reset) + repo=repo.name, tags=tags, author=author, + status=status) }}">reset) @@ -82,7 +86,8 @@ {{ issue.user.user | avatar(16) | safe }} {{issue.user.user}} @@ -94,14 +99,15 @@ {% if issue.assignee %} {{ issue.assignee.user | avatar(16) | safe }} {{ issue.assignee.user }} {% else %} (unassigned) + repo=repo.name, tags=tags, author=author, status=status) }}">(unassigned) {% endif %}