Commit aee174ef by Hiago Rafael
parents 29792f56 35090024
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<!DOCTYPE html>
<html>
<head>
......
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<!DOCTYPE html>
<html>
<head>
......@@ -14,7 +15,7 @@
{% for animal in animais %}
<li>
{{ 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>
{% endfor %}
</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