go-bouquins/templates/index.html
2017-08-05 12:16:28 +02:00

41 lines
1.7 KiB
HTML

{{ template "header.html" . }}
<div class="container" id="index">
<div class="jumbotron">
<h1>Bouquins</h1>
<p>Cette bibliothèque contient actuellement <strong>{{ .BooksCount }}</strong> livres et BD en format papier ou électronique.</p>
<button class="btn btn-primary" type="button" @click="showBooks">Livres</button>
<button class="btn btn-primary" type="button" @click="showAuthors">Auteurs</button>
<button class="btn btn-primary" type="button" @click="showSeries">Series</button>
</div>
<div class="table-responsive">
<paginate :page="page"></paginate>
<results :results="results" :cols="cols"></results>
<paginate :page="page"></paginate>
</div>
</div>
<script type="text/x-template" id="results-template">
<table class="table table-striped" v-if="results.length > 0">
<tr>
<th v-for="col in cols">
<template v-if="col.sortable">
<a href="#" @click="sortBy(col.id)">{{ "{{" }}col.name{{ "}}" }}</a>
<span v-if="sort_by == col.id" :class="['glyphicon', { 'glyphicon-chevron-up': order_desc , 'glyphicon-chevron-down': !order_desc}]"></span>
</template>
<template v-else>{{ "{{" }}col.name{{ "}}" }}</template>
</th>
</tr>
<tr v-for="item in results">
<td v-for="col in cols">test</td>
</tr>
</table>
</script>
<script type="text/x-template" id="paginate-template">
<nav aria-label="Pages">
<ul class="pager">
<li class="previous" v-bind:class="{ disabled: page <= 1 }"><a href="#" @click="prevPage"><span aria-hidden="true">&larr;</span> Précédents</a></li>
<li class="next"><a href="#" @click="nextPage">Suivants <span aria-hidden="true">&rarr;</span></a></li>
</ul>
</nav>
</script>
{{ template "footer.html" . }}