Skip to content

Instantly share code, notes, and snippets.

@enricostano
Created July 10, 2012 22:37
Show Gist options
  • Save enricostano/3086661 to your computer and use it in GitHub Desktop.
Save enricostano/3086661 to your computer and use it in GitHub Desktop.
Gara Show view
{% extends '::base.html.twig' %}
{% block title %}{{ gara.name }}{% endblock %}
{% block body %}
<h2>{{ gara.name }}</h2>
{{ gara.ente }}
{% include 'StanoSasDocumentBundle:Attachment:index.html.twig' with { 'attachments': attachments } %}
<h3>Aggiungi file</h3>
{% render 'StanoSasDocumentBundle:Attachment:create' with { 'ownerObj': gara } %}
<h2><a href="{{ path('StanoSasDocumentBundle_gara_index') }}">Lista gare</a></h2>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment