mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 13:15:43 +00:00 
			
		
		
		
	unified naming schema
This commit is contained in:
		| @@ -30,10 +30,10 @@ | |||||||
|         </a> |         </a> | ||||||
|     </li> |     </li> | ||||||
|  |  | ||||||
|     <li class='list-group-item {% if tab == "upload" %}active{% endif %}' title='{% trans "Upload File" %}'> |     <li class='list-group-item {% if tab == "import" %}active{% endif %}' title='{% trans "Import Parts" %}'> | ||||||
|         <a href='{% url "part-upload" %}'> |         <a href='{% url "part-import" %}'> | ||||||
|             <span class='fas fa-file-upload'></span> |             <span class='fas fa-file-upload'></span> | ||||||
|             {% trans "Upload File" %} |             {% trans "Import Parts" %} | ||||||
|         </a> |         </a> | ||||||
|     </li> |     </li> | ||||||
|  |  | ||||||
|   | |||||||
| @@ -121,7 +121,7 @@ part_urls = [ | |||||||
|     url(r'^new/?', views.PartCreate.as_view(), name='part-create'), |     url(r'^new/?', views.PartCreate.as_view(), name='part-create'), | ||||||
|  |  | ||||||
|     # Upload a part |     # Upload a part | ||||||
|     url(r'^import/', views.PartImport.as_view(), name='part-upload'), |     url(r'^import/', views.PartImport.as_view(), name='part-import'), | ||||||
|  |  | ||||||
|     # Create a new BOM item |     # Create a new BOM item | ||||||
|     url(r'^bom/new/?', views.BomItemCreate.as_view(), name='bom-item-create'), |     url(r'^bom/new/?', views.BomItemCreate.as_view(), name='bom-item-create'), | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user