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

Welcome to Inventory Manager

Find out about all of your assets.

{% if active_worklog_rows %}
Active Worklogs
You have {{ active_count }} active worklogs.
{{ tables.render_table( headers = active_worklog_headers, rows = active_worklog_rows, id = 'Active Worklog', entry_route = 'worklog_entry', per_page = 10 )}}
{% endif %}
Summary
{% endblock %} {% block script %} const data = {{ datasets|tojson }}; const layout = { title: 'Summary' }; Plotly.newPlot('summary', data, layout) {% endblock %}