| OLD | NEW |
| 1 {%extends "issue_base.html"%} | 1 {%extends "issue_base.html"%} |
| 2 {%block body%} | 2 {%block body%} |
| 3 | 3 |
| 4 <script language="JavaScript" type="text/javascript"><!-- | 4 <script language="JavaScript" type="text/javascript"><!-- |
| 5 function keyPressIntermediary(evt) { | 5 function keyPressIntermediary(evt) { |
| 6 return M_keyPress(evt); | 6 return M_keyPress(evt); |
| 7 } | 7 } |
| 8 document.onkeypress = keyPressIntermediary; | 8 document.onkeypress = keyPressIntermediary; |
| 9 {%if user%} | 9 {%if user%} |
| 10 logged_in = true; | 10 logged_in = true; |
| (...skipping 49 matching lines...) | | Loading... |
| 60 {%if user%} | 60 {%if user%} |
| 61 Double-click a line to add a draft in-line comment. | 61 Double-click a line to add a draft in-line comment. |
| 62 <br><span style="color:red">Draft comments are only viewable by you;</span> | 62 <br><span style="color:red">Draft comments are only viewable by you;</span> |
| 63 use <a href="{%url codereview.views.publish issue.key.id%}" class="novisit">
Publish+Mail Comments</a> ('m') to let others view them. | 63 use <a href="{%url codereview.views.publish issue.key.id%}" class="novisit">
Publish+Mail Comments</a> ('m') to let others view them. |
| 64 {%else%} | 64 {%else%} |
| 65 Please Sign in to add in-line comments. | 65 Please Sign in to add in-line comments. |
| 66 {%endif%} | 66 {%endif%} |
| 67 </div> | 67 </div> |
| 68 </div> | 68 </div> |
| 69 <div style="float: right; color: #333333; background-color: #eeeeec; border: 1px
solid lightgray; -moz-border-radius: 5px 5px 5px 5px; padding: 5px;"> | 69 <div style="float: right; color: #333333; background-color: #eeeeec; border: 1px
solid lightgray; -moz-border-radius: 5px 5px 5px 5px; padding: 5px;"> |
| 70 <div>{%include "context_select.html"%}</div> | 70 <div>{%include "view_details_select.html"%}</div> |
| 71 <div style="margin-top: 5px;"> | 71 <div style="margin-top: 5px;"> |
| 72 Jump to: <select onchange="M_jumpToPatch(this, {{issue.key.id}}, {{patchset.
key.id}});"> | 72 Jump to: <select onchange="M_jumpToPatch(this, {{issue.key.id}}, {{patchset.
key.id}});"> |
| 73 {% for jump_patch in patchset.patches %} | 73 {% for jump_patch in patchset.patches %} |
| 74 <option value="{{jump_patch.key.id}}" | 74 <option value="{{jump_patch.key.id}}" |
| 75 {%ifequal jump_patch.key.id patch.key.id%} selected="selected"{%endifeq
ual%}>{{jump_patch.filename}}</option> | 75 {%ifequal jump_patch.key.id patch.key.id%} selected="selected"{%endifeq
ual%}>{{jump_patch.filename}}</option> |
| 76 {% endfor %} | 76 {% endfor %} |
| 77 </select> | 77 </select> |
| 78 </div> | 78 </div> |
| 79 <div style="margin-top: 5px;"> | 79 <div style="margin-top: 5px;"> |
| 80 <a href="{%url codereview.views.patch issue.key.id,patchset.key.id,patch.key
.id%}"> | 80 <a href="{%url codereview.views.patch issue.key.id,patchset.key.id,patch.key
.id%}"> |
| (...skipping 79 matching lines...) | | Loading... |
| 160 N/P to move between comments. | 160 N/P to move between comments. |
| 161 {%if user%} | 161 {%if user%} |
| 162 Double-click a line to add a draft in-line comment. | 162 Double-click a line to add a draft in-line comment. |
| 163 <br><span style="color:red">Draft comments are only viewable by you;</span> | 163 <br><span style="color:red">Draft comments are only viewable by you;</span> |
| 164 use <b>Publish+Mail Comments</b> ('m') to let others view them. | 164 use <b>Publish+Mail Comments</b> ('m') to let others view them. |
| 165 {%else%} | 165 {%else%} |
| 166 Please <a href="{{sign_in}}">Sign in</a> to add in-line comments. | 166 Please <a href="{{sign_in}}">Sign in</a> to add in-line comments. |
| 167 {%endif%} | 167 {%endif%} |
| 168 </div> | 168 </div> |
| 169 {%endblock%} | 169 {%endblock%} |
| OLD | NEW |