# HG changeset patch # User Tim Zimmermann # Date 1457700423 -3600 # Node ID bc348dd68c65cc9e5c23b105d68772ba19d0718a # Parent a4f39dc4db6a3dbc67b0c62c33561b53dcc0fd09 dates in uv map page menue entry replaced by last/next diff -r a4f39dc4db6a -r bc348dd68c65 eskp.py --- a/eskp.py Fri Mar 11 10:00:23 2016 +0100 +++ b/eskp.py Fri Mar 11 13:47:03 2016 +0100 @@ -108,16 +108,24 @@ dates = get_valid_dates(FILES) ndates = len(dates) ind = dates.index(date_show) + textdates = [] if ind ==0 : chosendates = [dates[ind+1]] + textdates.append('next ->') + elif ind >= ndates - 1: chosendates= [dates[ind-1]] + textdates.append('<- last') else: chosendates = [dates[ind-1], dates[ind+1]] + textdates.append('<- last') + textdates.append('next ->') menue = [] - for date in chosendates: - text_date = date[-2:] + '.' + date[-4:-2] + '.' - menue.append(('/ozoneloss/uvmap/' + date, _(text_date))) + + for i in range(len(chosendates)): + date = chosendates[i] + textdate = textdates[i] + menue.append(('/ozoneloss/uvmap/' + date, _(textdate))) return menue