mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-04 14:28:48 +00:00
* Add generic implementation for barcode actions - Commonize code against tables - Cleaner UI - Better code - Will make future react refactor easier * Add permissions.js - Separate .js file for dynamically checking permissions * Update stock table to use client-side actions * API endpoint for bulk category adjustment * Bug fix for purchase_order.js - Prevent some really strange API calls * Refactor actions for part table - Now done dynamically * Refactor actions for the attachment tables * Refactor actions for build output table * Increment API version * Cleanup janky button * Refactor supplier part table * Refactor manufacturer part table * Remove linkButtonsToSelection - no longer needed - Cleanup, yay! * Cleanup purchase order line table * Refactor BOM table buttons * JS linting * Further cleanup * Template cleanup - remove extra div elements * js linting * js fix
31 lines
728 B
HTML
31 lines
728 B
HTML
{% extends "panel.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load inventree_extras %}
|
|
|
|
{% block label %}history{% endblock label %}
|
|
|
|
{% block heading %}
|
|
{% trans "Notification History" %}
|
|
{% endblock heading %}
|
|
|
|
{% block actions %}
|
|
<div class='btn btn-danger' type='button' id='history-delete' title='{% trans "Delete Notifications" %}'>
|
|
<span class='fas fa-trash-alt'></span> {% trans "Delete Notifications" %}
|
|
</div>
|
|
{% endblock actions %}
|
|
|
|
{% block content %}
|
|
|
|
<div id='history-buttons'>
|
|
{% include "filter_list.html" with id="notifications-history" %}
|
|
</div>
|
|
|
|
<div class='row'>
|
|
|
|
<table class='table table-striped table-condensed' id='history-table' data-toolbar='#history-buttons'>
|
|
</table>
|
|
</div>
|
|
|
|
{% endblock content %}
|