backup in tables
This commit is contained in:
parent
56127ae801
commit
5ae6e7589d
2 changed files with 10 additions and 1 deletions
|
@ -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():
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Add table
Reference in a new issue