Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion templates/admin/event/speakers_management.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<th data-tf-filter-type="select" class="center aligned">Nuit d'hotel entre les deux jours ?</th>
<th data-tf-filter-type="select" class="center aligned">Nuit d'hotel après l'évènement ?</th>
<th data-tf-filter-type="select" class="center aligned">Pas de nuit d'hotel ?</th>
<th data-tf-filter-type="select" class="center aligned">Défraiement voyage nécessaire ?</th>
<th data-tf-filter-type="select" class="center aligned">Sponsors ?</th>
<th data-tf-filter-type="select" class="center aligned">Justificatifs envoyés ?</th>
<th data-tf-filter-type="select" class="center aligned">Microphone</th>
Expand Down Expand Up @@ -121,6 +122,15 @@
{% endif %}
</span>
</td>
<td class="center aligned">
<span class="ui label">
{% if speaker.speaker.travelRefundNeeded %}
oui
{% else %}
non
{% endif %}
</span>
</td>
<td class="center aligned">
{% if not speaker.speaker.travelRefundSponsored and not speaker.speaker.hasHostingSponsor %}
<span class="ui label">non</span>
Expand Down Expand Up @@ -166,7 +176,7 @@
</td>
</tr>
{% else %}
<tr><td colspan="13" style="text-align: center;">
<tr><td colspan="15" style="text-align: center;">
<div class="ui icon header">
<i class="meh outline icon"></i>
Aucune information. {% if event == null %}Essayez de changez d'évènement !{% endif %}
Expand Down
1 change: 1 addition & 0 deletions tests/behat/features/Admin/AdminInfosSpeakers.feature
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ Feature: Administration - Partie Infos Speakers
And I follow "afup-main-menu-item--admin_event_speakers_management"
Then the ".content h2" element should contain "Infos speakers"
And the ".content table" element should contain "Geoffrey BACHELET"
And the ".content table" element should contain "Défraiement voyage nécessaire ?"
When I follow the button of tooltip "Voir sa page"
Then I should see "Ma page speaker : forum"
And I should see "Nous vous hébergeons"
Expand Down
Loading