Welcome to mirror list, hosted at ThFree Co, Russian Federation.

trail.twig « components « templates « assets - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe8b081baa9dd55b58cd9a68ad7a5fad71274599 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<div class="trail" data-controller="{{controller_name}}">
    <table style="float:left">
        <tbody>
            <tr>
                {% for crumb in crumbs %}

                <td class="crumb">
                    <a href="{{crumb.url}}">
					<span class="icon">
						<img src="{{crumb.icon}}" alt="{{crumb.iconalt}}">
					</span>
					<span class="label">{{crumb.text}}</span>
				</a> {% if crumb.helpurl %}
                    <a class="help" href="{{crumb.helpurl}}" title="{{lang.strhelp}}" target="phppgadminhelp">{{lang.strhelpicon}}</a> {% endif %} {{lang.strseparator}}
                </td>
                {% endfor %}
            </tr>
        </tbody>
    </table>
    {% if search_paths %}
    <table style="float:right">
        <tbody>
            <tr>
                <td class="crumb" style="    vertical-align: inherit;">
                    {{lang.strsearchpath}}
                </td>
                {% for crumb in search_paths %}

                <td class="crumb">
                    |
                    <a href="{{crumb.url}}">
							<span class="icon">
								<img src="{{crumb.icon}}" alt="{{crumb.iconalt}}">
							</span>
							<span class="label">{{crumb.text}}</span>
						</a>

                </td>
                {% endfor %}
                <td>
                    &nbsp;&nbsp;
                </td>
            </tr>
        </tbody>
    </table>
    {% endif %}
</div>