@extends('admin.crud.callforproposal.base') @section('subcontent')

Gestion de "{{ $selection->title }}"

Configuration des groupes

Utilisé # pour l'emplacement de numérotation automatique.
@foreach ($groups as $group)
    @foreach ($group->applicationSelections as $applicationSelection)
  • {{ $applicationSelection->application->project_title }}
  • @endforeach
Évaluateurs
@endforeach

Candidatures non reparties

    @foreach ($applicationSelectionWithoutGroups as $applicationSelection)
  • {{ $applicationSelection->application->project_title }} @if ($applicationSelection->groups->count() > 0 ) ({{ $applicationSelection->groups->count() }}) @endif
  • @endforeach

Candidatures déjà reparties (nb groupes)

    @foreach ($applicationSelectionWithGroups as $applicationSelection)
  • {{ $applicationSelection->application->project_title }} @if ($applicationSelection->groups->count() > 0 ) ({{ $applicationSelection->groups->count() }}) @endif
  • @endforeach
Attention Pour ajouter plusieurs fois la même candidature, Il est necessaire de sauvegarder les groupes entre chaque ajout supplémentaire.
@endsection @section('after_styles') @endsection @section('after_scripts') @loadOnce('packages/select2/dist/js/select2.full.min.js') @loadOnce('bpFieldInitSimpleSelect2MultipleElement') @endLoadOnce @endsection