Advertisement
Guest User

Lista stöðvar

a guest
Feb 21st, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. Python:
  2. for i in data['results']:
  3. add_stod = True
  4. for j in all_stations:
  5. if i['company'] == j['company']:
  6. add_stod = False
  7.  
  8. if add_stod:
  9. all_stations.append(i)
  10.  
  11. @route('/')
  12. def index():
  13. return template('views/index', all_stations=all_stations)
  14.  
  15.  
  16. HTML:
  17. <section class="stodvar">
  18. % for stod in all_stations:
  19. <div class="stodvar-block">
  20. <div class="logo">
  21. <img src="/static/img/{{stod['key'][:2]}}.svg">
  22. </div>
  23. <a href="/stod/{{stod['company']}}">
  24. Nánar um {{stod['company']}}
  25. </a>
  26. </div>
  27. % end
  28. </section>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement