Show More
@@ -21,11 +21,11 b'' | |||
|
21 | 21 | </div> |
|
22 | 22 | |
|
23 | 23 | <h3 class="${'closed' if c.pull_request.is_closed() else ''}"> |
|
24 |
|
|
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
|
28 |
|
|
|
24 | <img src="${h.url('/images/icons/flag_status_%s.png' % str(c.pull_request.last_review_status))}" /> | |
|
25 | ${_('Title')}: ${c.pull_request.title} | |
|
26 | %if c.pull_request.is_closed(): | |
|
27 | (${_('Closed')}) | |
|
28 | %endif | |
|
29 | 29 | </h3> |
|
30 | 30 | |
|
31 | 31 | <div class="form"> |
@@ -38,9 +38,9 b'' | |||
|
38 | 38 | <div class="changeset-status-container" style="float:none;clear:both"> |
|
39 | 39 | %if c.current_changeset_status: |
|
40 | 40 | <div title="${_('Pull request status')}" class="changeset-status-lbl"> |
|
41 |
|
|
|
42 |
|
|
|
43 | %endif | |
|
41 | %if c.pull_request.is_closed(): | |
|
42 | ${_('Closed')}, | |
|
43 | %endif | |
|
44 | 44 | ${h.changeset_status_lbl(c.current_changeset_status)} |
|
45 | 45 | </div> |
|
46 | 46 | <div class="changeset-status-ico" style="padding:1px 4px"><img src="${h.url('/images/icons/flag_status_%s.png' % c.current_changeset_status)}" /></div> |
@@ -19,14 +19,14 b'' | |||
|
19 | 19 | <script> |
|
20 | 20 | redirect_hash_branch = function(){ |
|
21 | 21 | var branch = window.location.hash.replace(/^#(.*)/, '$1'); |
|
22 |
|
|
|
23 |
|
|
|
24 |
|
|
|
25 | } | |
|
22 | if (branch){ | |
|
23 | window.location = "${h.url('changelog_home',repo_name=c.repo_name,branch='__BRANCH__')}" | |
|
24 | .replace('__BRANCH__',branch); | |
|
25 | } | |
|
26 | 26 | } |
|
27 | 27 | redirect_hash_branch(); |
|
28 | 28 | window.onhashchange = function() { |
|
29 |
|
|
|
29 | redirect_hash_branch(); | |
|
30 | 30 | }; |
|
31 | 31 | </script> |
|
32 | 32 |
General Comments 0
You need to be logged in to leave comments.
Login now