Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramez Ashraf committed Jan 27, 2023
1 parent ad71a4d commit 080c412
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

## [0.6.5]
- Fix Issue with group_by field pointing to model with custom primary key Issue #58


## [0.6.4]
- Fix highchart cache to target the specific chart
- Added initial and required to report_form_factory
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
master_doc = 'index'

# The full version, including alpha/beta/rc tags
release = '0.6.4'
release = '0.6.5'

# -- General configuration ---------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions slick_reporting/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default_app_config = 'slick_reporting.apps.ReportAppConfig'

VERSION = (0, 6, 4)
VERSION = (0, 6, 5)

__version__ = '0.6.4'
__version__ = '0.6.5'
4 changes: 0 additions & 4 deletions slick_reporting/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,6 @@ def _get_record_data(self, obj, columns):
:return: a dict object containing all needed data
"""

# todo , if columns are empty for whatever reason this will throw an error
# display_link = self.list_display_links or columns[0]
data = {}
group_by_val = None
if self.group_by:
Expand Down Expand Up @@ -389,8 +387,6 @@ def _get_record_data(self, obj, columns):

else:
data[name] = obj.get(name, '')
# if self.group_by and name in display_link:
# data[name] = make_linkable_field(self.group_by_field.related_model, group_by_val, data[name])
return data

def get_report_data(self):
Expand Down

0 comments on commit 080c412

Please sign in to comment.