70 lines
2.7 KiB
Twig
70 lines
2.7 KiB
Twig
|
|
{% extends 'base.html.twig' %}
|
||
|
|
|
||
|
|
{% block title %}Modifier Contribution IA{% endblock %}
|
||
|
|
|
||
|
|
{% block body %}
|
||
|
|
<div class="d-flex justify-content-between align-items-center mb-4">
|
||
|
|
<h1>Modifier Contribution IA</h1>
|
||
|
|
<div>
|
||
|
|
<a href="{{ path('app_contrib_ia_show', {'id': contrib_ia.id}) }}" class="btn btn-info">
|
||
|
|
<i class="fas fa-eye"></i> Voir
|
||
|
|
</a>
|
||
|
|
<a href="{{ path('app_contrib_ia_index') }}" class="btn btn-secondary">
|
||
|
|
<i class="fas fa-arrow-left"></i> Retour à la liste
|
||
|
|
</a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-md-8">
|
||
|
|
<div class="card">
|
||
|
|
<div class="card-body">
|
||
|
|
{{ form_start(form) }}
|
||
|
|
<div class="mb-3">
|
||
|
|
{{ form_label(form.assistantIa) }}
|
||
|
|
{{ form_widget(form.assistantIa) }}
|
||
|
|
{{ form_errors(form.assistantIa) }}
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="mb-3">
|
||
|
|
{{ form_label(form.contribution) }}
|
||
|
|
{{ form_widget(form.contribution) }}
|
||
|
|
{{ form_errors(form.contribution) }}
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-md-6">
|
||
|
|
<div class="mb-3">
|
||
|
|
{{ form_label(form.evaluationPertinence) }}
|
||
|
|
{{ form_widget(form.evaluationPertinence) }}
|
||
|
|
{{ form_errors(form.evaluationPertinence) }}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="col-md-6">
|
||
|
|
<div class="mb-3">
|
||
|
|
{{ form_label(form.evaluationTemps) }}
|
||
|
|
{{ form_widget(form.evaluationTemps) }}
|
||
|
|
{{ form_errors(form.evaluationTemps) }}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="mb-3">
|
||
|
|
{{ form_label(form.commentaire) }}
|
||
|
|
{{ form_widget(form.commentaire) }}
|
||
|
|
{{ form_errors(form.commentaire) }}
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="d-flex gap-2">
|
||
|
|
<button type="submit" class="btn btn-success">
|
||
|
|
<i class="fas fa-save"></i> Enregistrer
|
||
|
|
</button>
|
||
|
|
<a href="{{ path('app_contrib_ia_index') }}" class="btn btn-secondary">Annuler</a>
|
||
|
|
</div>
|
||
|
|
{{ form_end(form) }}
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|