Commit aee174ef by Hiago Rafael
parents 29792f56 35090024
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
......
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
...@@ -14,7 +15,7 @@ ...@@ -14,7 +15,7 @@
{% for animal in animais %} {% for animal in animais %}
<li> <li>
{{ animal.nome }} - {{ animal.especie }} - {{ animal.idade }} anos - {{ animal.peso }} kg {{ animal.nome }} - {{ animal.especie }} - {{ animal.idade }} anos - {{ animal.peso }} kg
<a href="/excluir/{{ loop.index0 }}">❌ Excluir</a> <a href="/excluir/{{ animal.id }}">❌ Excluir</a>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment