2017-07-30 16:09:27 +00:00
|
|
|
{{ template "header.html" . }}
|
|
|
|
<div class="container" id="app">
|
2017-08-03 17:51:56 +00:00
|
|
|
{{ if .Id }}
|
|
|
|
<div class="page-header">
|
2017-07-30 16:09:27 +00:00
|
|
|
<h1>
|
|
|
|
<span class="glyphicon glyphicon-list"></span>
|
2017-08-03 17:51:56 +00:00
|
|
|
{{ .Name }}
|
2017-07-30 16:09:27 +00:00
|
|
|
</h1>
|
|
|
|
</div>
|
|
|
|
<h2>
|
|
|
|
<span class="glyphicon glyphicon-book"></span> Livre(s)
|
|
|
|
</h2>
|
|
|
|
<ul>
|
2017-08-03 17:51:56 +00:00
|
|
|
{{ range .Books }}
|
|
|
|
<li class="list-unstyled">{{ .SeriesIndex }}.
|
|
|
|
<a href="/books/{{ .Id }}">{{ .Title }}</a>
|
2017-07-30 16:09:27 +00:00
|
|
|
</li>
|
2017-08-03 17:51:56 +00:00
|
|
|
{{ end }}
|
2017-07-30 16:09:27 +00:00
|
|
|
</ul>
|
|
|
|
<h2>
|
|
|
|
<span class="glyphicon glyphicon-user"></span> Auteur(s)
|
|
|
|
</h2>
|
|
|
|
<ul>
|
2017-08-03 17:51:56 +00:00
|
|
|
{{ range .Authors }}
|
|
|
|
<li class="list-unstyled">
|
2017-07-30 16:09:27 +00:00
|
|
|
<span class="glyphicon glyphicon-user"></span>
|
2017-08-03 17:51:56 +00:00
|
|
|
<a href="/authors/{{ .Id }}">{{ .Name }}</a>
|
2017-07-30 16:09:27 +00:00
|
|
|
</li>
|
2017-08-03 17:51:56 +00:00
|
|
|
{{ end }}
|
2017-07-30 16:09:27 +00:00
|
|
|
</ul>
|
2017-08-03 17:51:56 +00:00
|
|
|
{{ else }}
|
|
|
|
<div class="alert alert-danger" role="alert">Aucune série sélectionnée</div>
|
|
|
|
{{ end }}
|
2017-07-30 16:09:27 +00:00
|
|
|
</div>
|
|
|
|
{{ template "footer.html" . }}
|