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-19 23:25:06 +01:00
|
|
|
<!-- Navbar left -->
|
2015-02-20 12:49:51 +01:00
|
|
|
<div class="col-md-2 listg">
|
2015-02-19 23:02:06 +01:00
|
|
|
<legend>Créer une liste oeuvre:</legend>
|
|
|
|
<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() }}}" />
|
|
|
|
<div class="form-group">
|
|
|
|
<div class="input-group">
|
|
|
|
<input type="text" class="form-control" required="required" name="name" placeholder="Ajouter une liste d'oeuvre">
|
|
|
|
</div>
|
2015-02-20 12:49:51 +01:00
|
|
|
</div>
|
2015-02-19 23:02:06 +01:00
|
|
|
<button type="submit" class="btn btn-primary">Ajouter</button>
|
|
|
|
</form>
|
|
|
|
<br><br>
|
|
|
|
<legend>Mes listes d'oeuvres:</legend>
|
|
|
|
<table class="table table-hover">
|
2015-02-20 12:49:51 +01:00
|
|
|
<caption>Nom | Activer | Supprimer</caption>
|
|
|
|
@foreach ($listeoeuvres as $listeoeuvre)
|
|
|
|
<tr class="active listeoeuvre">
|
|
|
|
<form method="POST" role="form" action="deleteListeOeuvre">
|
|
|
|
<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>
|
|
|
|
<label class="ios7-switch">
|
|
|
|
<input type="checkbox" checked>
|
|
|
|
<span></span>
|
|
|
|
</label>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<button type="submit" class="btn btn-sm btn-danger">
|
|
|
|
<span class="glyphicon glyphicon-trash"></span>
|
|
|
|
</td>
|
|
|
|
</form>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
2015-02-19 23:02:06 +01:00
|
|
|
</table>
|
2015-02-19 17:07:41 +01:00
|
|
|
</div>
|
2015-02-19 16:42:27 +01:00
|
|
|
|
2015-02-13 00:59:13 +01:00
|
|
|
|
2015-02-20 12:49:51 +01:00
|
|
|
<div class="col-md-9 princ">
|
2015-02-20 00:58:51 +01:00
|
|
|
<!-- switch a rajouté -->
|
2015-02-19 22:53:52 +01:00
|
|
|
<legend>Falbala: </legend>
|
2015-02-19 16:42:27 +01:00
|
|
|
|
2015-02-19 22:53:52 +01:00
|
|
|
<div class="panel panel-default col-md-9"><br>
|
|
|
|
<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>
|
2015-02-20 12:49:51 +01:00
|
|
|
<br>
|
|
|
|
|
|
|
|
<br><br><br><br><br><br><br><br><br><br><br>
|
2015-02-19 22:53:52 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-md-3">
|
2015-02-20 12:49:51 +01:00
|
|
|
<legend>Mes jeux associés</legend>
|
2015-02-20 00:58:51 +01:00
|
|
|
|
2015-02-19 22:53:52 +01:00
|
|
|
<div class="checkbox">
|
2015-02-20 00:58:51 +01:00
|
|
|
<label class="ios7-switch">
|
|
|
|
<input type="checkbox" checked>
|
|
|
|
<span></span>
|
|
|
|
Puzzle Game
|
2015-02-20 12:49:51 +01:00
|
|
|
</label>
|
2015-02-20 00:58:51 +01:00
|
|
|
|
|
|
|
<label class="ios7-switch">
|
|
|
|
<input type="checkbox" >
|
|
|
|
<span></span>
|
|
|
|
Jeu du pendu
|
2015-02-20 12:49:51 +01:00
|
|
|
</label>
|
2015-02-20 00:58:51 +01:00
|
|
|
|
|
|
|
<label class="ios7-switch">
|
|
|
|
<input type="checkbox" >
|
|
|
|
<span></span>
|
|
|
|
Assassin's creed
|
2015-02-20 12:49:51 +01:00
|
|
|
</label>
|
|
|
|
</div>
|
2015-02-19 22:53:52 +01:00
|
|
|
</div>
|
|
|
|
<br><br><br>
|
2015-02-19 17:55:46 +01:00
|
|
|
</div>
|
|
|
|
|
2015-02-19 23:25:06 +01:00
|
|
|
|
2015-02-20 12:49:51 +01:00
|
|
|
<!-- TAKE ALL THAT'S INSIDE THIS DIV FOR "MY SELECTION" -->
|
|
|
|
<div class="col-md-7 princ" id="selection">
|
|
|
|
|
|
|
|
<span style="float: right"><a href="">Sélectionner tout</a> -- <a href="">Annuler sélection</a></span><br>
|
|
|
|
<div class="panel-body" id="oeuvrePic">
|
2015-02-19 22:53:52 +01:00
|
|
|
<!-- // TODO -->
|
|
|
|
</div>
|
2015-02-20 12:49:51 +01:00
|
|
|
<button style="float: right" class="btn btn-primary" id="enregistrer">Enregistrer</button>
|
2015-02-19 17:55:46 +01:00
|
|
|
</div>
|
|
|
|
|
2015-02-19 16:42:27 +01:00
|
|
|
|
2015-02-20 12:49:51 +01:00
|
|
|
<!-- TAKE ALL THAT'S INSIDE THIS DIV FOR "ADD PICTURES" -->
|
|
|
|
<div class="col-md-7 princ" id="addpicture">
|
2015-02-20 02:54:06 +01:00
|
|
|
<div>
|
2015-02-20 02:17:28 +01:00
|
|
|
<legend>Critères</legend>
|
|
|
|
<select class="form-control comboSearch">
|
|
|
|
<option selected="selected">Selectionner catégorie</option>
|
|
|
|
<option>1</option>
|
2015-02-20 02:54:06 +01:00
|
|
|
<option>2</option>
|
|
|
|
</select>
|
2015-02-20 02:17:28 +01:00
|
|
|
<select class="form-control comboSearch">
|
|
|
|
<option selected="selected">Tous les éléments</option>
|
|
|
|
<option>1</option>
|
|
|
|
<option>2</option>
|
|
|
|
</select>
|
2015-02-20 02:54:06 +01:00
|
|
|
<button class="btn btn-primary">Ajouter</button>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<input type="text" class="form-control comboSearch" required="required" name="name" placeholder="Rechercher">
|
|
|
|
<button class="btn btn-primary">Ajouter</button>
|
2015-02-20 02:17:28 +01:00
|
|
|
</div>
|
|
|
|
|
2015-02-20 02:54:06 +01:00
|
|
|
<div>
|
|
|
|
<form class="form-inline mesFiltres">
|
2015-02-20 02:17:28 +01:00
|
|
|
<legend>Mes filtres</legend>
|
|
|
|
<table class="table">
|
|
|
|
<tr>
|
|
|
|
<td>Montagne: noire</td>
|
2015-02-20 02:54:06 +01:00
|
|
|
<td><a href="" ><img class="icon_del" src="/pictures/setting_picture/delete_icon.png" alt="Supprimer" /></a></td>
|
2015-02-20 02:17:28 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>couleur: bleu</td>
|
2015-02-20 02:54:06 +01:00
|
|
|
<td><a href="" ><img class="icon_del" src="/pictures/setting_picture/delete_icon.png" alt="Supprimer" /></a></td>
|
2015-02-20 02:17:28 +01:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>âge: 10 ans</td>
|
2015-02-20 02:54:06 +01:00
|
|
|
<td><a href="" ><img class="icon_del" src="/pictures/setting_picture/delete_icon.png" alt="Supprimer" /></a></td>
|
2015-02-20 02:17:28 +01:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</form>
|
2015-02-20 12:49:51 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<span style="float: right"><a href="">Sélectionner tout</a> -- <a href="">Annuler sélection</a></span><br>
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-body" id="oeuvrePic">
|
|
|
|
|
|
|
|
<div class="col-xs-4 col-md-3">
|
|
|
|
<a href="#" class="thumbnail">
|
|
|
|
<img src="http://www.augustins.org/documents/10180/156407/1"/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="col-xs-4 col-md-3">
|
|
|
|
<a href="#" class="thumbnail">
|
|
|
|
<img src="http://www.augustins.org/documents/10180/156407/1"/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
<div class="col-xs-4 col-md-3">
|
|
|
|
<a href="#" class="thumbnail">
|
|
|
|
<img src="http://www.augustins.org/documents/10180/156407/1"/>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<button style="float: right" class="btn btn-primary" id="enregistrer">Enregistrer</button>
|
2015-02-19 17:49:26 +01:00
|
|
|
</div>
|
2015-02-20 02:17:28 +01:00
|
|
|
|
2015-02-12 20:00:23 +01:00
|
|
|
@endsection
|
2015-02-19 15:37:52 +01:00
|
|
|
|