{% extends 'AdminBundle:Admin:adminLayout.html.twig' %} {% block breadcrumb %} {{ backendHelpers.breadcrumb({ ("authors.titles.authors_home"|trans) : (path(paths.home)), ("authors.titles.authors"|trans) : (path(paths.index)), ("authors.titles.authors_show"|trans) : '' }) }} {% endblock %} {% block content %} {{ backendHelpers.pageTitle( "authors.titles.authors_show"|trans ) }}
{{ backendHelpers.addActionButton(path(paths.edit, { 'id': entity.id }), paths.edit, ('admin.titles.edit'|trans), 'btn-info', 'icon-edit' )}} {{ backendHelpers.addActionButton(path(paths.new), paths.new, ('admin.titles.add'|trans), 'btn-success', 'icon-plus' )}} {{ backendHelpers.addActionButton(path(paths.index), paths.index, ('admin.titles.list'|trans), 'btn-light', 'icon-list' )}}
{{"admin.titles.id"|trans}} {{ entity.id }}
{{"Website"|trans}} {{ entity.website }}
{{"Email"|trans}} {{ entity.email }}
{{"Phone"|trans}} {{ entity.phone }}
{{"Fax"|trans}} {{ entity.fax }}
{{"Enabled"|trans}} {{ entity.enabled }}
{{"commons.titles.country"|trans}} {{ entity.country }}
{{"commons.titles.name"|trans}} {{ entity.name }}
{{"Brief biography"|trans}} {{ entity.briefBiography|nl2br }}
{{"Full biography"|trans}} {{ entity.fullBiography|raw }}
{% endblock %}