Skip to content
Snippets Groups Projects
Commit e0c1b40d authored by Dylan Aïssi's avatar Dylan Aïssi
Browse files

Disable link to the storage page if it doesn't exist


Otherwise, it returns an 404 error.

Signed-off-by: default avatarDylan Aïssi <dylan.aissi@collabora.com>
parent 20afdcd3
No related branches found
No related tags found
1 merge request!224Disable link to the storage page if it doesn't exist
Pipeline #735180 passed
...@@ -116,12 +116,20 @@ def render(packaging_data, storage_data, destdir): ...@@ -116,12 +116,20 @@ def render(packaging_data, storage_data, destdir):
env = jinja2.Environment( env = jinja2.Environment(
loader=jinja2.FileSystemLoader("templates/"), autoescape=True loader=jinja2.FileSystemLoader("templates/"), autoescape=True
) )
if packaging_data is not None and storage_data is not None:
both_data = True
else:
both_data = False
for html, data in ("index", packaging_data), ("storage", storage_data): for html, data in ("index", packaging_data), ("storage", storage_data):
if data is None: if data is None:
continue continue
logging.debug(f"Generating {destdir}/{html}.html") logging.debug(f"Generating {destdir}/{html}.html")
rendered = env.get_template(f"{html}.html.jinja2").render(**data) rendered = env.get_template(f"{html}.html.jinja2").render(
**data, both_data=both_data
)
with open(destdir / f"{html}.html", "w") as html_file: with open(destdir / f"{html}.html", "w") as html_file:
html_file.write(rendered) html_file.write(rendered)
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
<div> <div>
<a href="index.html" class="text-muted">Packages</a> <a href="index.html" class="text-muted">Packages</a>
<span></span> <span></span>
<a href="storage.html" class="text-muted">Storage Usage</a> <a href="storage.html" class="text-muted {{'btn-link disabled' if not both_data }}">Storage Usage</a>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment