forgejo/templates/repo/issue/view_content
wxiaoguang ce73492d6f
Refactor ctx in templates (#23105)
Before, the `dict "ctx" ...` map is used to pass data between templates.

Now, more and more templates need to use real Go context:

* #22962
* #23092


`ctx` is a Go concept for `Context`, misusing it may cause problems, and
it makes it difficult to review or refactor.

This PR contains 2 major changes:

* In the top scope of a template, the `$` is the same as the `.`, so the
old labels_sidebar's `root` is the `ctx`. So this `ctx` could just be
removed.
bd7f218dce
* Rename all other `ctx` to `ctxData`, and it perfectly matches how it
comes from backend: `"ctxData": ctx.Data`.
7c01260e1d



From now on, there is no `ctx` in templates. There are only:

* `ctxData` for passing data
* `Context` for Go context
2023-03-02 11:44:06 -06:00
..
add_reaction.tmpl Refactor ctx in templates (#23105) 2023-03-02 11:44:06 -06:00
attachments.tmpl Refactor ctx in templates (#23105) 2023-03-02 11:44:06 -06:00
comments.tmpl Refactor ctx in templates (#23105) 2023-03-02 11:44:06 -06:00
comments_delete_time.tmpl Refactor ctx in templates (#23105) 2023-03-02 11:44:06 -06:00
context_menu.tmpl Refactor ctx in templates (#23105) 2023-03-02 11:44:06 -06:00
pull.tmpl Fix the Manually Merged form (#23015) 2023-02-21 18:03:41 +08:00
pull_merge_instruction.tmpl Refactor hiding-methods, remove jQuery show/hide, remove .hide class, remove inline style=display:none (#22950) 2023-02-19 12:06:14 +08:00
reactions.tmpl Refactor ctx in templates (#23105) 2023-03-02 11:44:06 -06:00
reference_issue_dialog.tmpl Make sure fmt catches all templates (#20979) 2022-08-31 23:58:54 +08:00
sidebar.tmpl Refactor ctx in templates (#23105) 2023-03-02 11:44:06 -06:00
update_branch_by_merge.tmpl Move helpers to be prefixed with gt- (#22879) 2023-02-13 17:59:59 +00:00