Mercurial > p > roundup > code
annotate share/roundup/templates/devel/html/msg.index.html @ 8566:e4191aa7b402 default tip
doc: issue2551415 correct doc for change input->input_payload
in 2.5 the rest interface changed a variable name from input to
input_payload. An earlier commit changed the rest docs. This commit
adds an item for it to the upgrading 2.4.0->2.5.0 section. Also cross
reference added to the rest docs with the updated examples.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 09 Apr 2026 00:19:06 -0400 |
| parents | fdb692f43d08 |
| children |
| rev | line source |
|---|---|
| 4434 | 1 <tal:block metal:use-macro="templates/page/macros/frame"> |
| 2 <title metal:fill-slot="head_title" i18n:translate="" | |
| 3 >List of messages - <span tal:replace="config/TRACKER_NAME" | |
| 4 i18n:name="tracker"/></title> | |
| 5 <span metal:fill-slot="body_title" tal:omit-tag="python:1" | |
| 6 i18n:translate="">Message listing</span> | |
| 7 <td class="content" metal:fill-slot="content"> | |
| 8 <table tal:define="batch request/batch" class="messages"> | |
| 9 <tr><th colspan=3 class="header" i18n:translate="">Messages</th></tr> | |
| 10 <tal:block tal:repeat="msg batch"> | |
| 11 <tr> | |
| 12 <th><a tal:attributes="href string:msg${msg/id}"><tal:x replace="msg/id"/></a></th> | |
| 13 <th tal:content="string:Author: ${msg/author}">author</th> | |
| 14 <th tal:content="string:Date: ${msg/date}">date</th> | |
| 15 </tr> | |
| 16 <tr> | |
| 17 <td colspan="3"><pre tal:content="msg/content">content</pre></td> | |
| 18 </tr> | |
| 19 </tal:block> | |
| 20 | |
|
8233
fdb692f43d08
fix: html templates reference missing issue.index macros
John Rouillard <rouilj@ieee.org>
parents:
4434
diff
changeset
|
21 <metal:block use-macro="templates/bug.index/macros/batch-footer" /> |
| 4434 | 22 |
| 23 </table> | |
| 24 </td> | |
| 25 | |
| 26 </tal:block> |
