Desperatly changing view name to avoid proxy odd bug

This commit is contained in:
Maxime Beauchemin 2016-02-11 13:23:46 -08:00
parent 88b8f73489
commit baac8c44a5
3 changed files with 5 additions and 5 deletions

View File

@ -304,7 +304,7 @@ class SqlaTable(Model, Queryable, AuditMixinNullable):
'Database', backref='tables', foreign_keys=[database_id])
offset = Column(Integer, default=0)
baselink = "tableview"
baselink = "tablemodelview"
def __repr__(self):
return self.table_name
@ -315,7 +315,7 @@ class SqlaTable(Model, Queryable, AuditMixinNullable):
@property
def url(self):
return '/tableview/edit/{}'.format(self.id)
return '/tablemodelview/edit/{}'.format(self.id)
@property
def link(self):

View File

@ -18,7 +18,7 @@
$.each(data, function(i, d){
var id = 'tbl_' + d;
div.append('<span id="' + id + '" style="margin: 0px 10px 10px 0px;" class="btn btn-default">' + d + '</span>')
$('#' + id).click(function(){window.location = '/tableview/add';})
$('#' + id).click(function(){window.location = '/tablemodelview/add';})
});
}).fail(function(error) {
alert("ERROR: " + error.responseText);

View File

@ -147,7 +147,7 @@ appbuilder.add_view(
category_icon='fa-database',)
class TableView(PanoramixModelView, DeleteMixin):
class TableModelView(PanoramixModelView, DeleteMixin):
datamodel = SQLAInterface(models.SqlaTable)
list_columns = [
'table_link', 'database', 'sql_link', 'changed_by_', 'changed_on_']
@ -176,7 +176,7 @@ class TableView(PanoramixModelView, DeleteMixin):
self.post_add(table)
appbuilder.add_view(
TableView,
TableModelView,
"Tables",
category="Sources",
icon='fa-table',)