view share/roundup/templates/devel/html/patch.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
line wrap: on
line source

<tal:block metal:use-macro="templates/page/macros/frame">
<title metal:fill-slot="head_title" i18n:translate="">
  List of patches - <span tal:replace="config/TRACKER_NAME" i18n:name="tracker" />
</title>
<span metal:fill-slot="body_title" tal:omit-tag="python:1"
  i18n:translate="">List of patches</span>
<td class="content" metal:fill-slot="content">

<table class="otherinfo" tal:define="batch request/batch">
 <tr><th style="padding-right: 10" i18n:translate="">Download</th>
     <th style="padding-right: 10" i18n:translate="">Description</th>
     <th style="padding-right: 10" i18n:translate="">Content Type</th>
     <th style="padding-right: 10" i18n:translate="">Uploaded By</th>
     <th style="padding-right: 10" i18n:translate="">Date</th>
 </tr>
 <tr tal:repeat="patch batch" tal:attributes="class python:['normal', 'alt'][repeat['patch'].index%6//3]">
  <td>
   <a tal:attributes="href string:patch${patch/id}/${patch/name}"
      tal:content="patch/name">dld link</a>
  </td>
  <td tal:content="patch/description">description</td>
  <td tal:content="patch/type">content type</td>
  <td tal:content="patch/creator">creator's name</td>
  <td tal:content="patch/creation">creation date</td>
 </tr>

 <metal:block use-macro="templates/bug.index/macros/batch-footer" />

</table>

</td>

</tal:block>
<tal:block metal:use-macro="templates/page/macros/frame">
<title metal:fill-slot="head_title" i18n:translate="">
  List of patches - <span tal:replace="config/TRACKER_NAME" i18n:name="tracker" />
</title>
<span metal:fill-slot="body_title" tal:omit-tag="python:1"
  i18n:translate="">List of patches</span>
<td class="content" metal:fill-slot="content">

<table class="otherinfo" tal:define="batch request/batch">
 <tr><th style="padding-right: 10" i18n:translate="">Download</th>
     <th style="padding-right: 10" i18n:translate="">Description</th>
     <th style="padding-right: 10" i18n:translate="">Content Type</th>
     <th style="padding-right: 10" i18n:translate="">Uploaded By</th>
     <th style="padding-right: 10" i18n:translate="">Date</th>
 </tr>
 <tr tal:repeat="patch batch" tal:attributes="class python:['normal', 'alt'][repeat['patch'].index%6//3]">
  <td>
   <a tal:attributes="href string:patch${patch/id}/${patch/name}"
      tal:content="patch/name">dld link</a>
  </td>
  <td tal:content="patch/description">description</td>
  <td tal:content="patch/type">content type</td>
  <td tal:content="patch/creator">creator's name</td>
  <td tal:content="patch/creation">creation date</td>
 </tr>

 <metal:block use-macro="templates/bug.index/macros/batch-footer" />

</table>

</td>

</tal:block>

Roundup Issue Tracker: http://roundup-tracker.org/