mirror of
https://github.com/grocy/grocy.git
synced 2026-04-06 21:06:15 +02:00
Review
This commit is contained in:
parent
3d1c42c6f7
commit
68e98cdf13
|
|
@ -1299,6 +1299,38 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"delete": {
|
||||||
|
"summary": "Deletes the given setting of the currently logged in user",
|
||||||
|
"tags": [
|
||||||
|
"Current user"
|
||||||
|
],
|
||||||
|
"parameters": [
|
||||||
|
{
|
||||||
|
"in": "path",
|
||||||
|
"name": "settingKey",
|
||||||
|
"required": true,
|
||||||
|
"description": "The key of the user setting",
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"responses": {
|
||||||
|
"204": {
|
||||||
|
"description": "The operation was successful"
|
||||||
|
},
|
||||||
|
"400": {
|
||||||
|
"description": "The operation was not successful",
|
||||||
|
"content": {
|
||||||
|
"application/json": {
|
||||||
|
"schema": {
|
||||||
|
"$ref": "#/components/schemas/Error400"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"/stock": {
|
"/stock": {
|
||||||
|
|
|
||||||
|
|
@ -1822,7 +1822,7 @@ msgstr ""
|
||||||
msgid "Price per stock unit"
|
msgid "Price per stock unit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Hide/view columns"
|
msgid "Table options"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "This product is currently on a shopping list"
|
msgid "This product is currently on a shopping list"
|
||||||
|
|
@ -2021,5 +2021,11 @@ msgstr ""
|
||||||
msgid "Reset"
|
msgid "Reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
msgid "Are you sure, you want reset the table?"
|
msgid "Are you sure to reset the table options?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Table layout configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
msgid "Hide/view columns"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
||||||
|
|
@ -765,17 +765,16 @@ $.extend(true, $.fn.dataTable.defaults, {
|
||||||
},
|
},
|
||||||
'preDrawCallback': function(settings)
|
'preDrawCallback': function(settings)
|
||||||
{
|
{
|
||||||
//currently it is not possible to save the state of rowGroup via saveState events
|
// Currently it is not possible to save the state of rowGroup via saveState events
|
||||||
var api = new $.fn.dataTable.Api(settings);
|
var api = new $.fn.dataTable.Api(settings);
|
||||||
if (typeof api.rowGroup === "function")
|
if (typeof api.rowGroup === "function")
|
||||||
{
|
{
|
||||||
var settingKey = 'datatables_rowGroup_' + settings.sTableId;
|
var settingKey = 'datatables_rowGroup_' + settings.sTableId;
|
||||||
|
|
||||||
if (Grocy.UserSettings[settingKey] !== undefined)
|
if (Grocy.UserSettings[settingKey] !== undefined)
|
||||||
{
|
{
|
||||||
var rowGroup = JSON.parse(Grocy.UserSettings[settingKey]);
|
var rowGroup = JSON.parse(Grocy.UserSettings[settingKey]);
|
||||||
|
|
||||||
//check if there way changed. the draw event is called often therefore we have to check if it's really necessary
|
// Check if there way changed. the draw event is called often therefore we have to check if it's really necessary
|
||||||
if (rowGroup.enable !== api.rowGroup().enabled()
|
if (rowGroup.enable !== api.rowGroup().enabled()
|
||||||
|| ("dataSrc" in rowGroup && rowGroup.dataSrc !== api.rowGroup().dataSrc()))
|
|| ("dataSrc" in rowGroup && rowGroup.dataSrc !== api.rowGroup().dataSrc()))
|
||||||
{
|
{
|
||||||
|
|
@ -786,7 +785,7 @@ $.extend(true, $.fn.dataTable.defaults, {
|
||||||
{
|
{
|
||||||
api.rowGroup().dataSrc(rowGroup.dataSrc);
|
api.rowGroup().dataSrc(rowGroup.dataSrc);
|
||||||
|
|
||||||
//apply fixed order for group column
|
// Apply fixed order for group column
|
||||||
var fixedOrder = {
|
var fixedOrder = {
|
||||||
pre: [rowGroup.dataSrc, 'asc']
|
pre: [rowGroup.dataSrc, 'asc']
|
||||||
};
|
};
|
||||||
|
|
@ -977,11 +976,10 @@ $(".change-table-columns-visibility-button").on("click", function(e)
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var message = '<div class="text-center"><h4>' + __t('Hide/view columns') + '</h4><div class="text-left form-group">' + columnCheckBoxesHtml + '</div></div>';
|
var message = '<div class="text-center"><h5>' + __t('Table options') + '</h5><hr><h5>' + __t('Hide/view columns') + '</h5><div class="text-left form-group">' + columnCheckBoxesHtml + '</div></div>';
|
||||||
|
|
||||||
if (rowGroupDefined)
|
if (rowGroupDefined)
|
||||||
{
|
{
|
||||||
message += '<hr><div class="text-center mt-1"><h4>' + __t('Group by') + '</h4><div class="text-left form-group">' + rowGroupRadioBoxesHtml + '</div></div>';
|
message += '<div class="text-center mt-1"><h5>' + __t('Group by') + '</h5><div class="text-left form-group">' + rowGroupRadioBoxesHtml + '</div></div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
bootbox.dialog({
|
bootbox.dialog({
|
||||||
|
|
@ -993,12 +991,12 @@ $(".change-table-columns-visibility-button").on("click", function(e)
|
||||||
buttons: {
|
buttons: {
|
||||||
reset: {
|
reset: {
|
||||||
label: __t('Reset'),
|
label: __t('Reset'),
|
||||||
className: 'btn-danger responsive-button',
|
className: 'btn-outline-danger float-left responsive-button',
|
||||||
callback: function()
|
callback: function()
|
||||||
{
|
{
|
||||||
bootbox.confirm({
|
bootbox.confirm({
|
||||||
swapButtonOrder: true,
|
swapButtonOrder: true,
|
||||||
message: __t("Are you sure, you want reset the table?"),
|
message: __t("Are you sure to reset the table options?"),
|
||||||
buttons: {
|
buttons: {
|
||||||
confirm: {
|
confirm: {
|
||||||
label: 'Yes',
|
label: 'Yes',
|
||||||
|
|
@ -1016,10 +1014,10 @@ $(".change-table-columns-visibility-button").on("click", function(e)
|
||||||
var dataTable = $(dataTableSelector).DataTable();
|
var dataTable = $(dataTableSelector).DataTable();
|
||||||
var tableId = dataTable.settings()[0].sTableId;
|
var tableId = dataTable.settings()[0].sTableId;
|
||||||
|
|
||||||
//Delete rowgroup settings
|
// Delete rowgroup settings
|
||||||
Grocy.FrontendHelpers.DeleteUserSetting('datatables_rowGroup_' + tableId);
|
Grocy.FrontendHelpers.DeleteUserSetting('datatables_rowGroup_' + tableId);
|
||||||
|
|
||||||
//Delete state settings
|
// Delete state settings
|
||||||
dataTable.state.clear();
|
dataTable.state.clear();
|
||||||
}
|
}
|
||||||
bootbox.hideAll();
|
bootbox.hideAll();
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#batteries-table"
|
data-table-selector="#batteries-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#batteries-journal-table"
|
data-table-selector="#batteries-journal-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -90,7 +90,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#batteries-overview-table"
|
data-table-selector="#batteries-overview-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#chores-table"
|
data-table-selector="#chores-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -68,7 +68,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#chores-journal-table"
|
data-table-selector="#chores-journal-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -112,7 +112,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#chores-overview-table"
|
data-table-selector="#chores-overview-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -63,7 +63,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#equipment-table"
|
data-table-selector="#equipment-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#locations-table"
|
data-table-selector="#locations-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -78,7 +78,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#apikeys-table"
|
data-table-selector="#apikeys-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -468,7 +468,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#barcode-table"
|
data-table-selector="#barcode-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
@ -569,14 +569,14 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#qu-conversions-table-products"
|
data-table-selector="#qu-conversions-table-products"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
<th>{{ $__t('Quantity unit from') }}</th>
|
<th>{{ $__t('Quantity unit from') }}</th>
|
||||||
<th>{{ $__t('Quantity unit to') }}</th>
|
<th>{{ $__t('Quantity unit to') }}</th>
|
||||||
<th>{{ $__t('Factor') }}</th>
|
<th>{{ $__t('Factor') }}</th>
|
||||||
<th>{{ $__('Group')}}</th>
|
<th>{{ $__t('Group')}}</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|
@ -671,4 +671,4 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@stop
|
@stop
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#productgroups-table"
|
data-table-selector="#productgroups-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -102,7 +102,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#products-table"
|
data-table-selector="#products-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -128,7 +128,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#qu-conversions-table"
|
data-table-selector="#qu-conversions-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#quantityunits-table"
|
data-table-selector="#quantityunits-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -139,7 +139,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#recipes-pos-table"
|
data-table-selector="#recipes-pos-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
@ -242,7 +242,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#recipes-includes-table"
|
data-table-selector="#recipes-includes-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
@ -370,4 +370,4 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@stop
|
@stop
|
||||||
|
|
|
||||||
|
|
@ -102,7 +102,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#recipes-table"
|
data-table-selector="#recipes-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,7 @@
|
||||||
tr.dtrg-group {
|
tr.dtrg-group {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
@endpush
|
@endpush
|
||||||
|
|
||||||
|
|
@ -173,7 +174,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#shoppinglist-table"
|
data-table-selector="#shoppinglist-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
@ -391,4 +392,4 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@stop
|
@stop
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#shoppinglocations-table"
|
data-table-selector="#shoppinglocations-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -58,7 +58,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#stockentries-table"
|
data-table-selector="#stockentries-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -121,7 +121,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#stock-journal-table"
|
data-table-selector="#stock-journal-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -96,7 +96,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#stock-journal-summary-table"
|
data-table-selector="#stock-journal-summary-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -152,7 +152,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#stock-overview-table"
|
data-table-selector="#stock-overview-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -73,7 +73,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#taskcategories-table"
|
data-table-selector="#taskcategories-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -101,7 +101,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#tasks-table"
|
data-table-selector="#tasks-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
@ -198,4 +198,4 @@
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@stop
|
@stop
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#userentities-table"
|
data-table-selector="#userentities-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -84,7 +84,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#userfields-table"
|
data-table-selector="#userfields-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,7 @@
|
||||||
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
<th class="border-right"><a class="text-muted change-table-columns-visibility-button"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
data-toggle="tooltip"
|
data-toggle="tooltip"
|
||||||
title="{{ $__t('Hide/view columns') }}"
|
title="{{ $__t('Table options') }}"
|
||||||
data-table-selector="#users-table"
|
data-table-selector="#users-table"
|
||||||
href="#"><i class="fas fa-eye"></i></a>
|
href="#"><i class="fas fa-eye"></i></a>
|
||||||
</th>
|
</th>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user