mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
21 lines
647 B
Twig
21 lines
647 B
Twig
{% extends "NelmioApiDocBundle::layout.html.twig" %}
|
|
|
|
{% block content %}
|
|
{% for resource, methods in resources %}
|
|
<li class="resource">
|
|
<div class="heading">
|
|
<h2>{{ resource }}</h2>
|
|
</div>
|
|
<ul class="endpoints">
|
|
<li class="endpoint">
|
|
<ul class="operations">
|
|
{% for data in methods %}
|
|
{% include 'NelmioApiDocBundle::method.html.twig' %}
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
{% endfor %}
|
|
{% endblock content %}
|