{% macro player_card(player, buteur_pick, can_pick) %} {% set photo = player.photoPublicPath %} {% set photo_url = photo ? ((photo starts with 'http://' or photo starts with 'https://') ? photo : asset(photo)) : '' %} {% set is_selected = buteur_pick.current_id is not null and buteur_pick.current_id == player.id %}
{% if photo %} {% set src = (photo starts with 'http://' or photo starts with 'https://') ? photo : asset(photo) %} {% else %} {{ player.nom|first|upper }} {% endif %} {% if player.numero is not null %} {{ player.numero }} {% endif %} {{ player.nom }}
{% endmacro %} {% macro roster_row(player, buteur_pick, can_pick) %} {% set photo = player.photoPublicPath %} {% set photo_url = photo ? ((photo starts with 'http://' or photo starts with 'https://') ? photo : asset(photo)) : '' %} {% set is_selected = buteur_pick.current_id is not null and buteur_pick.current_id == player.id %}
  • {% if player.numero is not null %}{{ player.numero }}{% else %}—{% endif %} {% if photo %} {% set src = (photo starts with 'http://' or photo starts with 'https://') ? photo : asset(photo) %} {% else %} {{ player.nom|first|upper }} {% endif %} {{ player.prenom }} {{ player.nom }} {% if player.position %} {{ player.position }} {% endif %}
  • {% endmacro %}