mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-11-03 22:55:43 +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
		
			
				
	
	
		
			17 lines
		
	
	
		
			511 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			511 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% load i18n %}
 | 
						|
{% load inventree_extras %}
 | 
						|
 | 
						|
{% settings_value 'BARCODE_ENABLE' as barcodes %}
 | 
						|
 | 
						|
{% setting_object 'STOCK_OWNERSHIP_CONTROL' as owner_control %}
 | 
						|
{% if owner_control.value == "True" %}
 | 
						|
    {% authorized_owners location.owner as owners %}
 | 
						|
{% endif %}
 | 
						|
 | 
						|
<div id='{{ prefix }}button-toolbar'>
 | 
						|
    {% include "filter_list.html" with prefix=prefix id="stock" %}
 | 
						|
</div>
 | 
						|
 | 
						|
<table class='table table-striped table-condensed' data-toolbar='#{{ prefix }}button-toolbar' id='{{ prefix }}stock-table'>
 | 
						|
</table>
 |