@section('show')

<h1>Show {{className}}</h1>

<p>{{ link_to_route('{{pluralModel}}.index', 'Return to all {{pluralModel}}') }}</p>

<table class="table table-striped table-bordered">
    <thead>
        <tr>
            {{headings}}
        </tr>
    </thead>

    <tbody>
        <tr>
            {{fields}}
        </tr>
    </tbody>
</table>

@stop