| OLD | NEW |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" | 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" |
| 2 "http://www.w3.org/TR/html4/loose.dtd"> | 2 "http://www.w3.org/TR/html4/loose.dtd"> |
| 3 <html> | 3 <html> |
| 4 <head> | 4 <head> |
| 5 <title> | 5 <title> |
| 6 {%if issue%}{{issue.subject}} -{%endif%} | 6 {%if issue%}{{issue.subject}} -{%endif%} |
| 7 {%if is_dev%} | 7 {%if is_dev%} |
| 8 DEV SERVER | 8 DEV SERVER |
| 9 {%else%} | 9 {%else%} |
| 10 Code Review | 10 Code Review |
| (...skipping 51 matching lines...) Show 10 above Show 10 below |
| 62 | | 62 | |
| 63 <a class="novisit" href="{%url codereview.views.repos%}">Repositories</a> | 63 <a class="novisit" href="{%url codereview.views.repos%}">Repositories</a> |
| 64 {%if not user%} | 64 {%if not user%} |
| 65 | | 65 | |
| 66 <a class="novisit" href="{{sign_in}}">Sign in</a> | 66 <a class="novisit" href="{{sign_in}}">Sign in</a> |
| 67 with your <a href="https://www.google.com/accounts/NewAccount">Google | 67 with your <a href="https://www.google.com/accounts/NewAccount">Google |
| 68 Account</a> to create issues and add comments | 68 Account</a> to create issues and add comments |
| 69 {%endif%} | 69 {%endif%} |
| 70 </div> | 70 </div> |
| 71 <hr /> | 71 <hr /> |
| 72 |
| 73 {% if issue %} |
| 74 <div> |
| 75 Issue: <a class="novisit" href="{%url codereview.views.show issue.key.id%}" ti
tle="Issue #{{issue.key.id}}: {{issue.subject}}">{{issue.subject|truncatewords:6
}}</a> |
| 76 | |
| 77 {%ifequal issue.owner user %} |
| 78 <a class="novisit" href="{%url codereview.views.edit issue.key.id%}">Edit |
| 79 Issue</a> |
| 80 {%else%} |
| 81 <span class="disabled">Can't Edit/Delete</span> |
| 82 {%endifequal%} |
| 83 | |
| 84 {%if user%} |
| 85 <a class="novisit" href="{%url codereview.views.publish issue.key.id%}">Publis
h+Mail |
| 86 Comments</a> |
| 87 {%else%} |
| 88 <span class="disabled">Can't Publish+Mail</span> |
| 89 {%endif%} |
| 90 </div> |
| 91 <hr /> |
| 92 {% endif %} |
| 72 | 93 |
| 73 <div> | 94 <div> |
| 74 {%block body%}BODY GOES HERE{%endblock%} | 95 {%block body%}BODY GOES HERE{%endblock%} |
| 75 </div> | 96 </div> |
| 76 | 97 |
| 77 <p /> | 98 <p /> |
| 78 <a target="_blank" href="http://code.google.com/appengine/"><img border="0" | 99 <a target="_blank" href="http://code.google.com/appengine/"><img border="0" |
| 79 src="http://code.google.com/appengine/images/appengine-noborder-120x30.gif" | 100 src="http://code.google.com/appengine/images/appengine-noborder-120x30.gif" |
| 80 alt="Powered by Google App Engine" /></a> | 101 alt="Powered by Google App Engine" /></a> |
| 81 | 102 |
| 82 </body> | 103 </body> |
| 83 </html> | 104 </html> |
| OLD | NEW |