Skip to content

Commit

Permalink
v1.3.90
Browse files Browse the repository at this point in the history
  • Loading branch information
matllubos committed Jan 12, 2016
1 parent 5026f39 commit 60e1ba8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion is_core/generic_views/inlines/inline_table_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,18 @@

from is_core.generic_views.table_views import TableViewMixin
from is_core.generic_views.inlines import InlineView
from is_core.site import get_model_core


class InlineTableView(TableViewMixin, InlineView):
template_name = 'forms/inline_table.html'
fk_name = None

def _get_api_url(self):
from is_core.site import get_model_core
return get_model_core(self.model).get_api_url(self.request)

def _get_menu_group_pattern_name(self):
from is_core.site import get_model_core
return get_model_core(self.model).get_menu_group_pattern_name()

def _get_list_filter(self):
Expand Down
2 changes: 1 addition & 1 deletion is_core/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = (1, 3, 89)
VERSION = (1, 3, 90)


def get_version():
Expand Down

0 comments on commit 60e1ba8

Please sign in to comment.