summaryrefslogtreecommitdiffstats
path: root/modules-available/translation/templates/module-list.html
blob: 026e17e920dad4ce9597b417049e0a990279e6db (plain) (blame)
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
<h1>{{lang_translationHeading}}</h1>

<div class="panel panel-default">
	<table class="table">
		<thead>
			<tr>
				<th>{{lang_module}}</th>
				<th>{{lang_status}}</th>
			<tr>
		</thead>
		<tbody>
			{{#table}}
				<tr>
					<td>
						{{#depfail}}
						<div class="pull-right"><span class="red glyphicon glyphicon-exclamation-sign" title="{{lang_missingDeps}}"></span></div>
						{{/depfail}}
						<a href="?do=Translation&amp;module={{module}}">{{module}}</a>
					</td>
					<td>{{{status}}}</td>
				</tr>
			{{/table}}
		</tbody>
	</table>
</div>