Merge pull request #381 from mvdbos/master

Only render sandbox config if  the sandbox is enabled
This commit is contained in:
William Durand 2014-05-15 19:01:35 +02:00
commit a88e7d8278

View File

@ -15,6 +15,7 @@
<body> <body>
<div id="header"> <div id="header">
<a href="{{ path('nelmio_api_doc_index') }}"><h1>{{ apiName }}</h1></a> <a href="{{ path('nelmio_api_doc_index') }}"><h1>{{ apiName }}</h1></a>
{% if enableSandbox %}
<div id="sandbox_configuration"> <div id="sandbox_configuration">
body format: body format:
<select id="body_format"> <select id="body_format">
@ -36,6 +37,7 @@
api endpoint: <input type="text" id="api_endpoint" value=""/> api endpoint: <input type="text" id="api_endpoint" value=""/>
{% endif %} {% endif %}
</div> </div>
{% endif %}
<br style="clear: both;" /> <br style="clear: both;" />
</div> </div>
{% include motdTemplate %} {% include motdTemplate %}