{% extends 'base.html.twig' %} {% block title %}Pokemon index{% endblock %} {% block stylesheets %} {% endblock %} {% block body %}

Pokemon index

{% for pokemon in pokemon %} {% else %} {% endfor %}
Numero Nom Type 1 Type 2 Generation Vie Attaque Defense Legendaire actions
{{ pokemon.numero }}. {{ pokemon.nom }} {% if pokemon.imageName %} pokemon-img {% endif %} {{ pokemon.type1.name }} {% if pokemon.type2 %} {{ pokemon.type2.name }} {% endif %} {{ pokemon.generation.name }} {{ pokemon.vie }} {{ pokemon.attaque }} {{ pokemon.defense }} {{ pokemon.legendaire ? 'Yes' : 'No' }}
no records found
{% endblock %}