| 1 |
{# The repository nav bar. Described, not written: the members and the |
| 2 |
reasoning are in `crate::quasi::widgets::git_nav`, which the git pages will |
| 3 |
embed directly as they convert. Expects `refs`, `owner`, `repo_name`, |
| 4 |
`current_ref`, `active_tab`, `open_issue_count` and `is_owner`. #} |
| 5 |
{{ crate::quasi::widgets::git_nav::html(&crate::quasi::widgets::git_nav::Nav { |
| 6 |
owner: owner, |
| 7 |
repo: repo_name, |
| 8 |
current_ref: current_ref, |
| 9 |
active_tab: active_tab, |
| 10 |
open_issue_count: *open_issue_count, |
| 11 |
is_owner: *is_owner, |
| 12 |
refs: refs, |
| 13 |
})|safe }} |
| 14 |
|