[UPDT] HORILLA VIEWS: Record count display updation

This commit is contained in:
Horilla
2024-06-18 14:30:26 +05:30
parent 7a67310a66
commit 167f4d66d9
3 changed files with 2 additions and 3 deletions

View File

@@ -10,7 +10,7 @@
reloadSelectedCount($('#count_{{view_id|safe}}'));
"
style="cursor: pointer;">
{% trans "Select All" %} {{queryset.paginator.count}}
{% trans "Select All" %} ({{queryset.paginator.count}})
</div>
<div
id="unselect_{{view_id}}"

View File

@@ -14,7 +14,7 @@
reloadSelectedCount($('#count_{{view_id|safe}}'));
"
style="cursor: pointer;">
{% trans "Select All" %} {{queryset.paginator.count}}
{% trans "Select All" %} ({{queryset.paginator.count}})
</div>
<div
id="unselect_{{view_id}}"

View File

@@ -10,4 +10,3 @@ $("#{{dynamic_id}} [name={{field.name}}]").change(function (e) {
}
});
</script>