| LEFT | RIGHT |
|---|---|
| 1 {%extends "base.html"%} | 1 {%extends "base.html"%} |
| 2 {%block body%} | 2 {%block body%} |
| 3 <h2>Publish + Mail Draft Comments</h2> | 3 <h2>Publish + Mail Draft Comments</h2> |
| 4 | 4 |
| 5 <form action="{%url rietveld.views.publish%}" method="post"> | 5 <form action="{%url rietveld.views.publish%}" method="post"> |
| 6 <table> | 6 <table> |
| 7 {%ifnotequal user issue.owner%} | 7 {%ifnotequal user issue.owner%} |
| 8 <tr><th>Subject:</th><td>{{issue.subject}}</td></tr> | 8 <tr><th>Subject:</th><td>{{issue.subject}}</td></tr> |
| 9 {%endifnotequal%} | 9 {%endifnotequal%} |
| 10 {{form}} | 10 {{form}} |
| 11 <tr> | 11 <tr> |
| 12 <td><input type="submit" value="Publish All My Drafts"></td> | 12 <td><input type="submit" value="Publish All My Drafts"></td> |
| 13 <td><i>The message will be included in the email sent (if any).</i></td> | 13 <td><i>The message will be included in the email sent (if any).</i></td> |
| 14 </tr> | 14 </tr> |
| 15 </table> | 15 </table> |
| 16 </form> | 16 </form> |
| 17 | 17 |
| 18 {%endblock%} | 18 {%endblock%} |
| LEFT | RIGHT |