|
9
|
1 |
{# example of other page extending the company base template #} |
|
|
2 |
{% extends 'CompanyBaseBundle:Index:index.html.twig' %} |
|
|
3 |
|
|
|
4 |
{% block content %} |
|
|
5 |
<div id="content" class="span-24 last"> |
|
|
6 |
<div id="inner_content"> |
|
|
7 |
<form action="{{ path('add_document') }}" method="post" {{ form_enctype(form) }}> |
|
|
8 |
{{ form_widget(form) }} |
|
|
9 |
<input type="submit" /> |
|
|
10 |
</form> |
|
|
11 |
</div> |
|
|
12 |
{% render "CompanyBaseBundle:Index:allDocumentsPartial" with {'param': 'mon super param'} %} |
|
|
13 |
{# render "SensioDistributionBundle:Configurator:step" #} |
|
|
14 |
</div> |
|
|
15 |
{% endblock %} |