2015-02-12 20:00:23 +01:00
|
|
|
@extends('app')
|
|
|
|
|
|
|
|
@section('content')
|
2015-02-19 16:45:23 +01:00
|
|
|
<link href="css/referent.css" rel="stylesheet" type="text/css"/>
|
2015-02-12 20:00:23 +01:00
|
|
|
<br>
|
2015-02-13 00:59:13 +01:00
|
|
|
<div class="col-md-3">
|
|
|
|
|
2015-02-19 17:29:01 +01:00
|
|
|
<legend>Créer une liste oeuvre:</legend>
|
2015-02-19 15:37:52 +01:00
|
|
|
<form class="form-inline" method="POST" role="form" action="addListeOeuvre">
|
|
|
|
<input type="hidden" name="idUser" value="{{ $me->id }}">
|
|
|
|
<input type="hidden" name="_token" value="{{{ csrf_token() }}}" />
|
2015-02-13 00:59:13 +01:00
|
|
|
<div class="form-group">
|
|
|
|
<div class="input-group">
|
2015-02-19 15:37:52 +01:00
|
|
|
<input type="text" class="form-control" required="required" name="name" placeholder="Ajouter une liste d'oeuvre">
|
2015-02-13 00:59:13 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary">Ajouter</button>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<br><br>
|
2015-02-19 15:37:52 +01:00
|
|
|
<legend>Mes listes d'oeuvres:</legend>
|
2015-02-13 00:59:13 +01:00
|
|
|
<table class="table table-hover">
|
2015-02-19 15:37:52 +01:00
|
|
|
@foreach ($listeoeuvres as $listeoeuvre)
|
|
|
|
<tr class="active listeoeuvre">
|
2015-02-19 16:22:12 +01:00
|
|
|
<form method="POST" role="form" action="deleteListeOeuvre">
|
2015-02-19 15:37:52 +01:00
|
|
|
<input type="hidden" name="idUser" value="{{ $me->id }}">
|
|
|
|
<input type="hidden" class="idListeOeuvre" name="idListeOeuvre" value="{{ $listeoeuvre->id }}">
|
|
|
|
<input type="hidden" name="_token" value="{{{ csrf_token() }}}" />
|
|
|
|
<td>{{$listeoeuvre->nom}}</td>
|
|
|
|
<td><button type="submit" class="btn btn-sm btn-danger"><span class="glyphicon glyphicon-trash"></span></a></td>
|
2015-02-13 00:59:13 +01:00
|
|
|
</tr>
|
2015-02-19 15:37:52 +01:00
|
|
|
</form>
|
2015-02-18 23:15:18 +01:00
|
|
|
@endforeach
|
2015-02-13 00:59:13 +01:00
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-9">
|
2015-02-19 16:42:27 +01:00
|
|
|
|
|
|
|
|
2015-02-19 17:55:46 +01:00
|
|
|
|
|
|
|
<div class="panel panel-default col-md-9"><br>
|
2015-02-19 17:07:41 +01:00
|
|
|
<ul class="nav nav-tabs">
|
|
|
|
<li role="presentation" class="active"><a href="#">Ma sélection</a></li>
|
|
|
|
<li role="presentation"><a href="#">Ajouter des images</a></li>
|
|
|
|
</ul>
|
|
|
|
<br><br><br><br>
|
|
|
|
</div>
|
2015-02-19 16:42:27 +01:00
|
|
|
|
2015-02-19 17:55:46 +01:00
|
|
|
<div class="col-md-3">
|
|
|
|
|
|
|
|
<legend>Mes jeux associés</legend>
|
|
|
|
<div class="col-md-8">
|
|
|
|
<select class="form-control">
|
|
|
|
<option selected="selected">Tous les éléments</option>
|
|
|
|
<option>1</option>
|
|
|
|
<option>2</option>
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
<button style="margin-top: 5px" class="btn btn-primary">Ajouter</button>
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
<table class="table">
|
|
|
|
<tr>
|
|
|
|
<td>Montagne: noire</td>
|
|
|
|
<td>Supprimer</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>couleur: bleu</td>
|
|
|
|
<td>Supprimer</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2015-02-19 16:42:27 +01:00
|
|
|
<br><br><br>
|
|
|
|
|
2015-02-19 15:37:52 +01:00
|
|
|
<legend>Falbala: (Activer ou Désactiver la listeoeuvre)</legend>
|
2015-02-13 00:59:13 +01:00
|
|
|
|
|
|
|
<div class="col-md-9">
|
|
|
|
|
|
|
|
<span style="float: right">Sélectionner tout -- Annuler sélection</span><br>
|
|
|
|
<div class="panel panel-default">
|
2015-02-19 15:37:52 +01:00
|
|
|
<div class="panel-body" id="oeuvrePic">
|
|
|
|
|
|
|
|
<!-- // TODO -->
|
2015-02-13 00:59:13 +01:00
|
|
|
|
|
|
|
<button style="float: right" class="btn btn-primary">Enregistrer</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="col-md-3">
|
|
|
|
|
|
|
|
<legend>Ajouter un filtre:</legend>
|
|
|
|
<h4>Par critère:</h4>
|
|
|
|
<select class="form-control">
|
|
|
|
<option selected="selected">Selectionner catégorie</option>
|
|
|
|
<option>1</option>
|
|
|
|
<option>2</option>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<select class="form-control">
|
|
|
|
<option selected="selected">Tous les éléments</option>
|
|
|
|
<option>1</option>
|
|
|
|
<option>2</option>
|
|
|
|
</select>
|
|
|
|
<button style="margin-top: 5px" class="btn btn-primary">Ajouter</button>
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
<h4>Par mot clé:</h4>
|
|
|
|
<form class="form-inline">
|
|
|
|
<div class="col-sm-8 form-group">
|
|
|
|
<div class="input-group">
|
|
|
|
<input type="text" class="form-control" id="exampleInputAmount" placeholder="Par mot clé">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary">Ajouter</button>
|
|
|
|
|
|
|
|
<br><br>
|
|
|
|
<legend>Mes filtres</legend>
|
|
|
|
|
2015-02-13 11:41:05 +01:00
|
|
|
<table class="table">
|
2015-02-13 00:59:13 +01:00
|
|
|
<tr>
|
|
|
|
<td>Montagne: noire</td>
|
|
|
|
<td>Supprimer</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>couleur: bleu</td>
|
|
|
|
<td>Supprimer</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>âge: 10 ans</td>
|
|
|
|
<td>Supprimer</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2015-02-12 20:00:23 +01:00
|
|
|
|
|
|
|
@endsection
|
2015-02-19 15:37:52 +01:00
|
|
|
|