Created
June 24, 2010 03:34
-
-
Save fsouza/450936 to your computer and use it in GitHub Desktop.
This file contains 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
<html> | |
<head> | |
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/> | |
<title>Lista de remédios</title> | |
</head> | |
<body id=""> | |
<ul> | |
{% for remedio in remedios %} | |
<li>{{ remedio.nome }}</li> | |
{% endfor %} | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment