| OLD | NEW |
| 1 {%extends "base.html"%} | 1 {%extends "base.html"%} |
| 2 | 2 |
| 3 {%block mainmenu%} | 3 {%block mainmenu%} |
| 4 <a href="{%url codereview.views.index%}" class="active">Issues</a> | 4 <a href="{%url codereview.views.index%}" class="active">Issues</a> |
| 5 <a href="{%url codereview.views.search%}">Search</a> | 5 <a href="{%url codereview.views.search%}">Search</a> |
| 6 {%endblock%} | 6 {%endblock%} |
| 7 | 7 |
| 8 | 8 |
| 9 {%block mainmenu2%} | 9 {%block mainmenu2%} |
| 10 {%if user%} | 10 {%if user%} |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 <div><b>Base URL:</b><br/> | 102 <div><b>Base URL:</b><br/> |
| 103 {%if src_url%} | 103 {%if src_url%} |
| 104 <a href="{{src_url}}" target="blank"> | 104 <a href="{{src_url}}" target="blank"> |
| 105 {%endif%} | 105 {%endif%} |
| 106 {{issue.base}} | 106 {{issue.base}} |
| 107 {%if src_url%} | 107 {%if src_url%} |
| 108 </a> | 108 </a> |
| 109 {%endif%} | 109 {%endif%} |
| 110 </div> | 110 </div> |
| 111 {%endif%} | 111 {%endif%} |
| 112 {%if issue.target_ref%} |
| 113 <div><b>Target Ref:</b><br/> |
| 114 {{issue.target_ref}} |
| 115 </div> |
| 116 {%endif%} |
| 112 {%if issue.project%} | 117 {%if issue.project%} |
| 113 <div><b>Project:</b><br/> | 118 <div><b>Project:</b><br/> |
| 114 <a href="{%url codereview.views.search%}?project={{issue.project}}"> | 119 <a href="{%url codereview.views.search%}?project={{issue.project}}"> |
| 115 {{issue.project}} | 120 {{issue.project}} |
| 116 </a> | 121 </a> |
| 117 </div> | 122 </div> |
| 118 {%endif%} | 123 {%endif%} |
| 119 <div><b>Visibility:</b><br/> | 124 <div><b>Visibility:</b><br/> |
| 120 {%if issue.private%} | 125 {%if issue.private%} |
| 121 Private/Protected. Only viewable by @chromium and @google accoun
ts. | 126 Private/Protected. Only viewable by @chromium and @google accoun
ts. |
| (...skipping 26 matching lines...) Expand all Loading... |
| 148 Created {{issue.created|timesince}} ago by {%nickname issue.owner%}<br/> | 153 Created {{issue.created|timesince}} ago by {%nickname issue.owner%}<br/> |
| 149 Modified {{issue.modified|timesince}} ago<br/> | 154 Modified {{issue.modified|timesince}} ago<br/> |
| 150 Reviewers: {%nicknames issue.reviewers%}<br/> | 155 Reviewers: {%nicknames issue.reviewers%}<br/> |
| 151 Base URL: {{issue.base}}<br/> | 156 Base URL: {{issue.base}}<br/> |
| 152 Comments: {{issue.num_comments}} | 157 Comments: {{issue.num_comments}} |
| 153 {%if issue|num_drafts:user%} <span style="color: red;">+ | 158 {%if issue|num_drafts:user%} <span style="color: red;">+ |
| 154 {{issue|num_drafts:user}} drafts</span>{%endif%} | 159 {{issue|num_drafts:user}} drafts</span>{%endif%} |
| 155 </div> | 160 </div> |
| 156 {%endif%} | 161 {%endif%} |
| 157 {%endblock%} | 162 {%endblock%} |
| OLD | NEW |