Exemplo n.º 1
0
 def city_state():
     if os.getenv("HBNB_TYPE_STORAGE") == "db":
         city = list(storage.all("State").values())
     else:
         city = State.city()
     return render_template('8-cities_by_states.html', city=city)