- Added class fullname instead of classname

This commit is contained in:
Dave Mc Nicoll 2024-11-11 20:56:31 +00:00
parent e1175f7273
commit 899dd1a4d4
4 changed files with 6 additions and 5 deletions

View File

@ -9,7 +9,7 @@
<div class="entities">
{% foreach $entities as $name => $entity %}
<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>
<hr style="margin-top:15px">
@ -36,7 +36,7 @@
</div>
<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>
<div class='description' style="margin-bottom:10px">{{ $entity['searchRequestDescription'] }}</div>

View File

@ -3,9 +3,9 @@
{% endfunction %}
<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;">
<h4 class='form-name'>{{ $form['className'] }}</h4>
<h4 class='form-name'>{{ $name }}</h4>
<div class='description'>{{ $form['description'] }}</div>
<hr style="margin-top:15px">

View File

@ -1,7 +1,7 @@
<ul>
{% foreach $routes as $route %}
<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>
<small style="color:#374300">{{ $route['name'] }}</small>
</li>

View File

@ -27,6 +27,7 @@
ul {background:#f4f4f4; list-style: none; padding-left:20px}
ul ul {margin: 0;border: 0;padding: 5px 30px;}
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;}
.field-desc > div {padding:5px;}