{% extends "layout.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}

Welcome to Inventory Manager

Find out about all of your assets.

{% if stale_worklog_rows %}
Stale Worklogs
You have {{ stale_count }} worklogs that need attention!
{{ tables.render_table( headers = stale_worklog_headers, rows = stale_worklog_rows, id = 'Stale Worklog', entry_route = 'worklog_entry', per_page = 3 )}}
{% endif %}
Summary
{% endblock %} {% block script %} const data = {{ datasets|tojson }}; const layout = { title: 'Summary' }; Plotly.newPlot('summary', data, layout) {% endblock %}