Remove stale breadcrumbs
This commit is contained in:
parent
2a7a72f31e
commit
921400456e
1 changed files with 0 additions and 2 deletions
|
@ -51,7 +51,6 @@ def list_inventory():
|
||||||
return render_template(
|
return render_template(
|
||||||
'table.html',
|
'table.html',
|
||||||
title=f"Inventory Listing ({filter_name})" if filter_by else "Inventory Listing",
|
title=f"Inventory Listing ({filter_name})" if filter_by else "Inventory Listing",
|
||||||
breadcrumb=[{'label': 'Inventory', 'url': url_for('main.inventory_index')}],
|
|
||||||
header=inventory_headers,
|
header=inventory_headers,
|
||||||
rows=[{"id": item.id, "cells": [row_fn(item) for row_fn in inventory_headers.values()]} for item in inventory],
|
rows=[{"id": item.id, "cells": [row_fn(item) for row_fn in inventory_headers.values()]} for item in inventory],
|
||||||
entry_route = 'inventory_item',
|
entry_route = 'inventory_item',
|
||||||
|
@ -266,7 +265,6 @@ def inventory_available():
|
||||||
return render_template(
|
return render_template(
|
||||||
"table.html",
|
"table.html",
|
||||||
title = "Available Inventory",
|
title = "Available Inventory",
|
||||||
breadcrumb = [{'label': 'Inventory', 'url': url_for('main.inventory_index')}],
|
|
||||||
header=inventory_headers,
|
header=inventory_headers,
|
||||||
rows=[{"id": item.id, "cells": [row_fn(item) for row_fn in inventory_headers.values()]} for item in inventory],
|
rows=[{"id": item.id, "cells": [row_fn(item) for row_fn in inventory_headers.values()]} for item in inventory],
|
||||||
entry_route = 'inventory_item'
|
entry_route = 'inventory_item'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue