- Added class fullname instead of classname
This commit is contained in:
parent
e1175f7273
commit
899dd1a4d4
|
@ -9,7 +9,7 @@
|
||||||
<div class="entities">
|
<div class="entities">
|
||||||
{% foreach $entities as $name => $entity %}
|
{% foreach $entities as $name => $entity %}
|
||||||
<div class="entity-wrapper" style="padding-left: 15px;border-left: 3px solid #eaa1af;">
|
<div class="entity-wrapper" style="padding-left: 15px;border-left: 3px solid #eaa1af;">
|
||||||
<h4 class='entity-name'>{{ $entity['className'] }}</h4>
|
<h4 class='entity-name'>{{ $name }}</h4>
|
||||||
<div class='description'>{{ $entity['description'] }}</div>
|
<div class='description'>{{ $entity['description'] }}</div>
|
||||||
|
|
||||||
<hr style="margin-top:15px">
|
<hr style="margin-top:15px">
|
||||||
|
@ -36,7 +36,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="search-request-wrapper">
|
<div class="search-request-wrapper">
|
||||||
<h4 class='search-request-name'>{{ $entity['className'] }}::searchRequest()</h4>
|
<h4 class='search-request-name'>{{ $name }}::searchRequest()</h4>
|
||||||
|
|
||||||
<h5>Requêtes</h5>
|
<h5>Requêtes</h5>
|
||||||
<div class='description' style="margin-bottom:10px">{{ $entity['searchRequestDescription'] }}</div>
|
<div class='description' style="margin-bottom:10px">{{ $entity['searchRequestDescription'] }}</div>
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
{% endfunction %}
|
{% endfunction %}
|
||||||
|
|
||||||
<div class="forms">
|
<div class="forms">
|
||||||
{% foreach $forms as $form %}
|
{% foreach $forms as $name => $form %}
|
||||||
<div class="single-form" style="padding-left:15px;border-left: 3px solid #9ccce6;">
|
<div class="single-form" style="padding-left:15px;border-left: 3px solid #9ccce6;">
|
||||||
<h4 class='form-name'>{{ $form['className'] }}</h4>
|
<h4 class='form-name'>{{ $name }}</h4>
|
||||||
<div class='description'>{{ $form['description'] }}</div>
|
<div class='description'>{{ $form['description'] }}</div>
|
||||||
<hr style="margin-top:15px">
|
<hr style="margin-top:15px">
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<ul>
|
<ul>
|
||||||
{% foreach $routes as $route %}
|
{% foreach $routes as $route %}
|
||||||
<li>
|
<li>
|
||||||
<span><a href="{{ $route['route'] }}" title="{{ $route['path'] }}" style='font-family:monospace;font-size:.85em'>{{ $route['cleaned'] }}</a> - {{ $route['description'] }}</span>
|
<span><a href="{{ $route['route'] }}" title="{{ $route['path'] }}" style='font-family:monospace;font-size:.85em'>{{ $route['cleaned'] }}</a> - {{= $route['description'] }}</span>
|
||||||
<span style='color:#ac1b1b'>{{ $route['methods'] }}</span>
|
<span style='color:#ac1b1b'>{{ $route['methods'] }}</span>
|
||||||
<small style="color:#374300">{{ $route['name'] }}</small>
|
<small style="color:#374300">{{ $route['name'] }}</small>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
ul {background:#f4f4f4; list-style: none; padding-left:20px}
|
ul {background:#f4f4f4; list-style: none; padding-left:20px}
|
||||||
ul ul {margin: 0;border: 0;padding: 5px 30px;}
|
ul ul {margin: 0;border: 0;padding: 5px 30px;}
|
||||||
ul li + li {margin-top: 12px;}
|
ul li + li {margin-top: 12px;}
|
||||||
|
ul ul > li:before {content:"↳"}
|
||||||
ol .title { display: flex;justify-content: space-between;background: #ffffffb2;padding: 9px 5px;border: 1px solid #fff;}
|
ol .title { display: flex;justify-content: space-between;background: #ffffffb2;padding: 9px 5px;border: 1px solid #fff;}
|
||||||
.field-desc > div {padding:5px;}
|
.field-desc > div {padding:5px;}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue