diff options
author | Frederick Muriuki Muriithi | 2024-03-20 11:38:40 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-03-20 11:38:40 +0300 |
commit | a4ed5d821921e43b73ecaf2ef802fab2b74d0b63 (patch) | |
tree | 862ff4a1711a4b6f6df35a5d7b067bbc30c7d3fb /qc_app/templates | |
parent | 2db9c5ef511ff6dbb09655524b51750b1a964d71 (diff) | |
download | gn-uploader-a4ed5d821921e43b73ecaf2ef802fab2b74d0b63.tar.gz |
Use `url_for` to get icon.
Diffstat (limited to 'qc_app/templates')
-rw-r--r-- | qc_app/templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qc_app/templates/base.html b/qc_app/templates/base.html index 2228356..0958687 100644 --- a/qc_app/templates/base.html +++ b/qc_app/templates/base.html @@ -12,7 +12,7 @@ {%block css%}{%endblock%} <link rel="shortcut icon" type="image/png" sizes="64x64" - href="/static/images/CITGLogo.png" /> + href="{{url_for('static', filename='images/CITGLogo.png')}}" /> </head> <body> |