Guest User

Untitled

a guest
Apr 21st, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. 154 {% for area in areas %}
  2. 155 <h2>{{ area }}</h2>
  3. 156 <ul>
  4. 157 {% for country in countries %}
  5. 158 {% if country.area = area %}<li>{{ country.name }}</li>{% endif %}
  6. 159 {% endfor %}
  7. 160 </ul>
  8. 161 {% endfor %}
Add Comment
Please, Sign In to add comment