mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-07 15:58:49 +00:00
91 lines
2.8 KiB
HTML
91 lines
2.8 KiB
HTML
{% extends "InvenTree/settings/settings.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block tabs %}
|
|
{% include "InvenTree/settings/tabs.html" with tab='part' %}
|
|
{% endblock %}
|
|
|
|
{% block settings %}
|
|
<h4>{% trans "Part Parameter Templates" %}</h4>
|
|
|
|
<div id='param-buttons'>
|
|
<button class='btn btn-success' id='new-param'>{% trans "New Parameter" %}</button>
|
|
</div>
|
|
|
|
<table class='table table-striped table-condensed' id='param-table' data-toolbar='#param-buttons'>
|
|
</table>
|
|
|
|
{% endblock %}
|
|
|
|
{% block js_ready %}
|
|
{{ block.super }}
|
|
|
|
$("#param-table").inventreeTable({
|
|
url: "{% url 'api-part-param-template-list' %}",
|
|
queryParams: {
|
|
ordering: 'name',
|
|
},
|
|
formatNoMatches: function() { return '{% trans "No part parameter templates found" %}'; },
|
|
columns: [
|
|
{
|
|
field: 'pk',
|
|
title: 'ID',
|
|
visible: false,
|
|
switchable: false,
|
|
},
|
|
{
|
|
field: 'name',
|
|
title: 'Name',
|
|
sortable: 'true',
|
|
},
|
|
{
|
|
field: 'units',
|
|
title: 'Units',
|
|
sortable: 'true',
|
|
},
|
|
{
|
|
formatter: function(value, row, index, field) {
|
|
var bEdit = "<button title='{% trans "Edit Template" %}' class='template-edit btn btn-default btn-glyph' type='button' pk='" + row.pk + "'><span class='fas fa-edit'></span></button>";
|
|
var bDel = "<button title='{% trans "Delete Template" %}' class='template-delete btn btn-default btn-glyph' type='button' pk='" + row.pk + "'><span class='fas fa-trash-alt icon-red'></span></button>";
|
|
|
|
var html = "<div class='btn-group' role='group'>" + bEdit + bDel + "</div>";
|
|
|
|
return html;
|
|
}
|
|
}
|
|
]
|
|
});
|
|
|
|
$("#new-param").click(function() {
|
|
launchModalForm("{% url 'part-param-template-create' %}", {
|
|
success: function() {
|
|
$("#param-table").bootstrapTable('refresh');
|
|
},
|
|
});
|
|
});
|
|
|
|
$("#param-table").on('click', '.template-edit', function() {
|
|
var button = $(this);
|
|
|
|
var url = "/part/parameter/template/" + button.attr('pk') + "/edit/";
|
|
|
|
launchModalForm(url, {
|
|
success: function() {
|
|
$("#param-table").bootstrapTable('refresh');
|
|
}
|
|
});
|
|
});
|
|
|
|
$("#param-table").on('click', '.template-delete', function() {
|
|
var button = $(this);
|
|
|
|
var url = "/part/parameter/template/" + button.attr('pk') + "/delete/";
|
|
|
|
launchModalForm(url, {
|
|
success: function() {
|
|
$("#param-table").bootstrapTable('refresh');
|
|
}
|
|
});
|
|
});
|
|
|
|
{% endblock %} |