Fix header on user IP modal

Return more user data to the info screen.
Some other backend changes
This commit is contained in:
Tim 2015-07-01 22:44:30 +02:00
parent 2d822c8468
commit 4830cc7d68
6 changed files with 63 additions and 32 deletions

View file

@ -59,6 +59,8 @@ class DataTables(object):
if join_type:
if join_type.upper() == 'LEFT OUTER JOIN':
join = 'LEFT OUTER JOIN %s ON %s = %s' % (join_table, join_evals[0], join_evals[1])
elif join_type.upper() == 'JOIN' or join_type.upper() == 'INNER JOIN':
join = 'INNER JOIN %s ON %s = %s' % (join_table, join_evals[0], join_evals[1])
else:
join = ''