Mercurial > p > roundup > code
changeset 8233:fdb692f43d08
fix: html templates reference missing issue.index macros
issue.index doesn't exsit in this tracker template. Use bug.index.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sat, 21 Dec 2024 16:48:00 -0500 |
| parents | d0460348bf9a |
| children | 1cd6d42afdda |
| files | share/roundup/templates/devel/html/file.index.html share/roundup/templates/devel/html/msg.index.html share/roundup/templates/devel/html/patch.index.html |
| diffstat | 3 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/share/roundup/templates/devel/html/file.index.html Sat Dec 21 16:35:11 2024 -0500 +++ b/share/roundup/templates/devel/html/file.index.html Sat Dec 21 16:48:00 2024 -0500 @@ -23,7 +23,7 @@ <td tal:content="file/creation">creation date</td> </tr> - <metal:block use-macro="templates/issue.index/macros/batch-footer" /> + <metal:block use-macro="templates/bug.index/macros/batch-footer" /> </table>
--- a/share/roundup/templates/devel/html/msg.index.html Sat Dec 21 16:35:11 2024 -0500 +++ b/share/roundup/templates/devel/html/msg.index.html Sat Dec 21 16:48:00 2024 -0500 @@ -18,7 +18,7 @@ </tr> </tal:block> - <metal:block use-macro="templates/issue.index/macros/batch-footer" /> + <metal:block use-macro="templates/bug.index/macros/batch-footer" /> </table> </td>
--- a/share/roundup/templates/devel/html/patch.index.html Sat Dec 21 16:35:11 2024 -0500 +++ b/share/roundup/templates/devel/html/patch.index.html Sat Dec 21 16:48:00 2024 -0500 @@ -24,7 +24,7 @@ <td tal:content="patch/creation">creation date</td> </tr> - <metal:block use-macro="templates/issue.index/macros/batch-footer" /> + <metal:block use-macro="templates/bug.index/macros/batch-footer" /> </table> @@ -57,7 +57,7 @@ <td tal:content="patch/creation">creation date</td> </tr> - <metal:block use-macro="templates/issue.index/macros/batch-footer" /> + <metal:block use-macro="templates/bug.index/macros/batch-footer" /> </table>
