Created
December 8, 2016 23:00
-
-
Save felipebastosweb/4522d91c249379d0e5dfd02101179076 to your computer and use it in GitHub Desktop.
python template escola inicial
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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