diff options
| author | Karan Jayachandra <mail@karanjayachandra.com> | 2024-11-08 17:30:19 +0100 |
|---|---|---|
| committer | Karan Jayachandra <mail@karanjayachandra.com> | 2024-11-08 17:30:19 +0100 |
| commit | 5b01707a04c362ced66428bef8e0234176d212d9 (patch) | |
| tree | 99e43efa171403cc08c7be28f9ec791462f822a9 /src/match_up/templates/players.j2 | |
| parent | 2a390e99e03fe538169aa6d7c23669eaa5ece467 (diff) | |
Added the changes to the templates to pass the url_for function
Diffstat (limited to 'src/match_up/templates/players.j2')
| -rw-r--r-- | src/match_up/templates/players.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/match_up/templates/players.j2 b/src/match_up/templates/players.j2 index ae6afe0..0d1f96c 100644 --- a/src/match_up/templates/players.j2 +++ b/src/match_up/templates/players.j2 @@ -1,10 +1,10 @@ {% from "macros.j2" import header, navbar, footer, player %} <!doctype html> <html lang="en"> - {{ header() }} + {{ header(url_for) }} <body> <section class="section"> - {{ navbar() }} + {{ navbar(url_for) }} <div class="fixed-grid has-4-cols"> <div class="grid"> {% for id, value in players.items() %} |
