diff options
author | Olivier Gayot <olivier.gayot@sigexec.com> | 2023-01-22 21:43:58 +0100 |
---|---|---|
committer | Olivier Gayot <olivier.gayot@sigexec.com> | 2023-01-22 21:43:58 +0100 |
commit | f363258ec1cce5385a56a22e2ac69e7dcec65d4f (patch) | |
tree | f14aca4382b0a456bea2a6a94147f2a7479845df | |
parent | c2f521115f8b48abe44bac22221f34805d52b60b (diff) |
add links to static content
Signed-off-by: Olivier Gayot <olivier.gayot@sigexec.com>
-rw-r--r-- | app.py | 4 | ||||
l--------- | static/bootstrap | 1 | ||||
l--------- | static/jquery | 1 |
3 files changed, 6 insertions, 0 deletions
@@ -140,3 +140,7 @@ def index_results(LPUSER, PPA, PACKAGE, RELEASE, ARCH): base_url="https://autopkgtest.ubuntu.com/", static_url="/static", ) + +@app.route("/favicon.ico") +def index_favicon(): + return "", 404 diff --git a/static/bootstrap b/static/bootstrap new file mode 120000 index 0000000..fe0f86b --- /dev/null +++ b/static/bootstrap @@ -0,0 +1 @@ +/usr/share/javascript/bootstrap
\ No newline at end of file diff --git a/static/jquery b/static/jquery new file mode 120000 index 0000000..7e2f826 --- /dev/null +++ b/static/jquery @@ -0,0 +1 @@ +/usr/share/javascript/jquery
\ No newline at end of file |