@extends('base')
@section('title')
Listing {{{ $user->currentSection->de_la_section }}}
@stop
@section('head')
@stop
@section('back_links')
$user->currentSection->slug)) }}'>
Retour au listing
@stop
@section('forward_links')
@if ($can_manage)
$user->currentSection->slug)) }}'>
Gérer le listing
@endif
@if (count($sections) == 1)
@if ($sections[0]['show_subgroup'])
$user->currentSection->slug)) }}'>
Listing par {{{ strtolower($sections[0]['section_data']->subgroup_name) }}}
@endif
@endif
@stop
@section('content')
@if ($user->currentSection->id == 1)
Photos des membres {{{ $user->currentSection->de_la_section }}} ({{ $total_member_count }} membres)
@endif
@foreach ($sections as $sct)
@if (count($sections) > 1)
@endif
Photos des membres {{{ $sct['section_data']->de_la_section }}}
@if ($sct['members']->count() > 1) ({{ $sct['members']->count() }} membres) @endif
@if ($sct['members']->count())
@foreach ($sct['members'] as $member)
{{{ $member->getFullName() }}}
@if ($member->has_picture)
@else
@endif
@endforeach
@else
Il n'y a aucun membre dans cette section.
@endif
@endforeach
@stop