diff --git a/inventory/models.py b/inventory/models.py index a3986995..4f9e8aa2 100644 --- a/inventory/models.py +++ b/inventory/models.py @@ -3190,6 +3190,7 @@ class CustomGroup(models.Model): "notes", "tasks", "activity", + "additionalservices" ], ) self.set_permissions( @@ -3305,6 +3306,7 @@ class CustomGroup(models.Model): "activity", "payment", "vendor", + "additionalservices", ], other_perms=[ "view_car", diff --git a/templates/dashboards/partials/financial_data_cards.html b/templates/dashboards/partials/financial_data_cards.html index e3216c64..2099124c 100644 --- a/templates/dashboards/partials/financial_data_cards.html +++ b/templates/dashboards/partials/financial_data_cards.html @@ -1,4 +1,5 @@ {% load i18n %} +{% load custom_filters %} {% if request.is_dealer or request.is_manager or request.is_accountant %}

{% blocktrans with start_date=start_date|date:"F j, Y" end_date=end_date|date:"F j, Y" %} diff --git a/templates/users/user_list.html b/templates/users/user_list.html index 98b9fef6..fa1eb263 100644 --- a/templates/users/user_list.html +++ b/templates/users/user_list.html @@ -20,7 +20,7 @@ - {% trans "Manage Groups" %} + {% trans "Manage Groups & Permissions" %} {% endif %}