backup in tables

This commit is contained in:
Ilya Zverev 2015-03-27 15:38:54 +03:00
parent 56127ae801
commit 5ae6e7589d
2 changed files with 10 additions and 1 deletions

View file

@ -93,6 +93,7 @@ def query_small_in_bbox():
@app.route('/tables')
def check_osm_table():
osm = False
backup = False
old = []
try:
cur = g.conn.cursor()
@ -101,6 +102,11 @@ def check_osm_table():
osm = True
except psycopg2.Error, e:
pass
try:
cur.execute('select backup, name, ST_Area(geom), modified, disabled, count_k, cmnt from {} limit 2;'.format(config.BACKUP))
backup = True
except psycopg2.Error, e:
pass
for t, tname in config.OTHER_TABLES.iteritems():
try:
cur.execute('select name, ST_Area(geom), modified, disabled, count_k, cmnt from {} limit 2;'.format(tname))
@ -108,7 +114,7 @@ def check_osm_table():
old.append(t)
except psycopg2.Error, e:
pass
return jsonify(osm=osm, tables=old, readonly=config.READONLY)
return jsonify(osm=osm, tables=old, readonly=config.READONLY, backup=backup)
@app.route('/split')
def split():

View file

@ -51,6 +51,9 @@ function checkHasOSM() {
$('#old_action').css('display', 'block');
$('#josm_old').css('display', 'inline');
}
if( !res.backup ) {
$('#backups').css('display', 'none');
}
if( res.readonly ) {
$('#action_buttons').css('display', 'none');
$('#import_link').css('display', 'none');