Newer
Older
activity-manager / templates / _includes / html / arrays / actor.html.twig
@Kilian Riou Kilian Riou on 23 Apr 2021 950 bytes Delete edit button
<table>
	<thead>
		<tr>
			<td>Nom</td>
			<td>Surnom</td>
			<td class="text-center">Suivi</td>
			<td class="text-center">Actif</td>
			<td class="text-center"><span class="d-none">Actions</span></td>
		</tr>
	</thead>
	<tbody>
		{% for actor in actors %}
		<tr>
			<td><a href="{{ url('actor_actor', {id: actor.id}, false) }}">{{ actor.fullName }}</a></td>
			<td>{{ actor.nickname }}</td>
			<td class="text-center">{% if actor.followed %}<i
				class="icofont-checked color-green"><span class="d-none">Suivi</span></i>
				{% endif %}</td>
			<td class="text-center">{% if actor.active %}<i
				class="icofont-checked color-green"><span class="d-none">Actif</span></i>
				{% endif %}</td>
			<td class="text-center">{% if actorDeleteForm is defined %} {% include '_includes/html/genericForm.html.twig' with {'form': actorDeleteForm, 'data': {actor: actor, variant: 'icon'}} only %}
				{% endif %}</td>
		</tr>
		{% endfor %}
	</tbody>
</table>