Files
java-tutorials/spring-roo/src/main/resources/templates/books/show.html
T

87 lines
3.1 KiB
HTML

<!DOCTYPE html>
<html lang="en" data-layout-decorate="~{layouts/default-list-layout}">
<head id="head">
<title data-th-text="|#{label_show_entity(#{label_book})}|">Show Book - Spring Roo application</title>
</head>
<body id="body">
<header role="banner">
<!-- Content replaced by layout of the page displayed -->
</header>
<!--CONTAINER-->
<div class="container bg-container">
<!-- CONTENT -->
<!--
Only the inner content of the following tag "section" is included
within the template, in the section "content"
-->
<section data-layout-fragment="content" data-th-object="${book}">
<div class="container-fluid content">
<!-- CONTENT -->
<h1 data-th-text="#{label_show_entity(#{label_book})}">Show Book</h1>
<div id="mainEntityFieldSet">
<h2 data-th-text="#{label_data_entity(#{label_book})}">Book data</h2>
<ul class="list-unstyled" id="containerFields">
<li id="book-title-field" data-z="3c44f2aa">
<strong data-th-text="#{label_book_title}">title</strong>
<span data-th-text="*{{title}}">titleValue</span>
</li>
<li id="book-author-field" data-z="38902f14">
<strong data-th-text="#{label_book_author}">author</strong>
<span data-th-text="*{{author}}">authorValue</span>
</li>
<li id="book-isbn-field" data-z="9c862ef4">
<strong data-th-text="#{label_book_isbn}">isbn</strong>
<span data-th-text="*{{isbn}}">isbnValue</span>
</li>
</ul>
</div>
<div class="clearfix">
<div class="pull-right">
<a id="Book_edit" href="edit.html" class="btn btn-primary" data-th-title="#{label_goEdit}" data-th-href="${@linkBuilder.of('BooksItemThymeleafController').to('editForm').with('book', book.id)}" data-th-text="#{label_edit}">Edit</a>
</div>
</div>
<div class="clearfix">
<div class="pull-left">
<a id="Book_list" href="list.html" class="btn btn-default" data-th-title="#{label_goBack}" data-th-href="${@linkBuilder.of('BooksCollectionThymeleafController').to('list')}">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span data-th-text="#{label_back}">Back</span>
</a>
</div>
</div>
</div>
</section>
<!-- /CONTENT -->
</div>
<!-- /CONTAINER -->
<footer class="container">
<!-- Content replaced by layout of the page displayed -->
</footer>
<!-- JavaScript
================================================== -->
<!-- Placed at the end of the document so that the pages load faster -->
<!-- JavaScript loaded by layout of the page displayed -->
<!--
Only the inner content of the following tag "javascript" is included
within the template, in the div "javascript"
-->
<div data-layout-fragment="javascript">
</div>
</body>
</html>