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

tabs.twig « components « templates « assets - github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5084fb3ccb2bc4ca19c679991a52c84e514886d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="tabs" data-controller="{{controller_name}}">

	{% for tab in tabs %}

		<div class="tab {{tab.active}}">
			<a href="{{tab.tablink}}">
				{% if tab.iconurl %}
					<span class="icon"><img src="{{tab.iconurl}}" alt="{{tab.title}}"/></span>
				{% endif %}
				<span class="label">{{tab.title}}</span>
			</a>
			{% if tab.helpurl %}
				<a class="help" href="{{tab.helpurl}}" title="{{lang.strhelp}}" target="phppgadminhelp">{{lang.strhelpicon}}</a>
			{% endif %}
		</div>

	{% endfor %}


</div>
<div class="max_height {{ controller_name }}">
<div class="clearfix">&nbsp;</div>