Parthian

Results 9 issues of Parthian

My language changes between en-gb and es work fine except for the special case where es/ is in the path. E.g. domain.com/humanresources/employee and then switch to Spanish. Works fine. Then...

bug
Awaiting changes

Take a look at your my-shop Attempt to Change Password from the Dashboard. (From Icon on right). http://my-shop.django-erp-framework.com/accounts/login/?next=/password_change/ - Fails to Django Debug page with a 404 http://my-shop.django-erp-framework.com/**admin**/accounts/login/?next=/password_change/ - addition...

This is a weird one. In https://github.com/RamezIssac/my-shop/blob/main/my_shop/settings.py the installed apps has this. ``` BAD "erp_framework.admin.jazzmin_integration", "erp_framework.admin", "erp_framework.reporting", "slick_reporting", "jazzmin", ``` I have Tabular Inlines with Add Another ModelName. With the...

I have a model with a number of FK and 1to1 fields. user, department etc. Reports automatically show these as filters. Awesome. However, is there a way to not allow...

Title says it all. I can see Reports when a low ranking View only user. But a click on a report results in a 403. Tried all sorts of combinations...

I have the following date field: date_recorded = models.DateField(_('Date Recorded'), default=datetime.date.today) When the model is saved and a report generated any row created 'today' is included in the Pie Chart...

Hi @RamezIssac Enjoying Slick Reporting. Can you help with Translations? I have English as default and Spanish as option. Some of the labels/buttons translate automatically with the built in django...

question

Trying some basic reports with django-slick-reporting (1.1.0) a ListReportView ``` class EmployeePPEOwnerReport(ListReportView): report_model = PPEOwner report_title = "Employee PPEOwner Report" date_field = 'date_assigned' #group_by = 'employee' # FK to base...

``` @report_field_register class CountTypeComputationField(SlickReportField): computation_method = Count computation_field = "type" verbose_name = _("SafetyObs Type") name = "obs_type_count" @register_report_view class SafetyObs(ReportView): #def counter(): # q = SafetyObservation.objects.all().aggregate(Count('type')) # return q report_model...