You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
2.4KB

  1. <?php
  2. use yii\helpers\Html;
  3. use yii\widgets\ActiveForm;
  4. /* @var $this yii\web\View */
  5. /* @var $model app\models\Produit */
  6. /* @var $form yii\widgets\ActiveForm */
  7. ?>
  8. <div class="produit-form">
  9. <?php $form = ActiveForm::begin(['options' => ['enctype' => 'multipart/form-data']]); ?>
  10. <?= $form->field($model, 'actif')->radioList([1 => 'Oui',0 => 'Non' ]) ?>
  11. <?= $form->field($model, 'order')->textInput(['maxlength' => 255]) ?>
  12. <?= $form->field($model, 'nom')->textInput(['maxlength' => 255]) ?>
  13. <?= $form->field($model, 'diminutif')->textInput(['maxlength' => 255]) ?>
  14. <?= $form->field($model, 'description')->textInput(['maxlength' => 255]) ?>
  15. <?= $form->field($model, 'recette')->textarea() ?>
  16. <?= $form->field($model, 'saison')->dropDownList(['all' => 'Toutes les saisons', 'printemps' => 'Printemps', 'ete' => 'Été', 'automne' => 'Automne', 'hiver' => 'Hiver']) ; ?>
  17. <?= $form->field($model, 'prix')->textInput() ?>
  18. <?= $form->field($model, 'poids')->textInput() ?>
  19. <?= $form->field($model, 'quantite_max')->textInput() ?>
  20. <?= $form->field($model, 'illustration')->fileInput() ?>
  21. <?php
  22. if(strlen($model->illustration)) {
  23. echo '<img src="../../frontend/web/uploads/'.$model->illustration.'" width="200px" /><br />' ;
  24. echo '<input type="checkbox" name="delete_illustration" id="delete_illustration" /> <label for="delete_illustration">Supprimer l\'illustration</label><br /><br />' ;
  25. }
  26. ?>
  27. <?= $form->field($model, 'photo')->fileInput() ?>
  28. <?php
  29. if(strlen($model->photo)) {
  30. echo '<img src="../../frontend/web/uploads/'.$model->photo.'" width="200px" /><br />' ;
  31. echo '<input type="checkbox" name="delete_photo" id="delete_photo" /> <label for="delete_photo">Supprimer la photo</label><br /><br />' ;
  32. }
  33. ?>
  34. <h2>Production</h2>
  35. <?= $form->field($model, 'lundi')->checkbox() ?>
  36. <?= $form->field($model, 'mardi')->checkbox() ?>
  37. <?= $form->field($model, 'mercredi')->checkbox() ?>
  38. <?= $form->field($model, 'jeudi')->checkbox() ?>
  39. <?= $form->field($model, 'vendredi')->checkbox() ?>
  40. <?= $form->field($model, 'samedi')->checkbox() ?>
  41. <?= $form->field($model, 'dimanche')->checkbox() ?>
  42. <div class="form-group">
  43. <?= Html::submitButton($model->isNewRecord ? 'Create' : 'Update', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?>
  44. </div>
  45. <?php ActiveForm::end(); ?>
  46. </div>