Skip to content

Instantly share code, notes, and snippets.

@felipebastosweb
Created December 8, 2016 23:00
Show Gist options
  • Save felipebastosweb/4522d91c249379d0e5dfd02101179076 to your computer and use it in GitHub Desktop.
Save felipebastosweb/4522d91c249379d0e5dfd02101179076 to your computer and use it in GitHub Desktop.
python template escola inicial
{% if escolas %}
<ul>
{% for escola in escolas %}
<li><a href="{{ escola.id }}">{{ escola.nome }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>Nenhuma Escola encontrada.</p>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment