view.books.ftl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockserver-examples Show documentation
Show all versions of mockserver-examples Show documentation
An example project demonstration tests using the mock server and proxy
<#ftl strip_whitespace=true strict_syntax=true strip_text=true>
<#-- @ftlvariable name="books" type="org.mockserver.model.Book[]" -->
<#setting url_escaping_charset="UTF-8">
<@compress single_line=true>
<#escape x as x?html>
List of Books
<#flush>
Details
Title
Author
<#list books as book>
${book.id}
${book.title}
${book.author}
#list>
#escape>
@compress>