[fix] Missing span closing tag in user info.

This commit is contained in:
opi 2014-07-13 12:28:24 +02:00
parent a6f7d7828f
commit f0a044c2e0

View file

@ -12,49 +12,48 @@
<h2 class="panel-title">{{fullname}}</h2> <h2 class="panel-title">{{fullname}}</h2>
</div> </div>
<div class="panel-body"> <div class="panel-body row">
<div class="row">
<div class="col-sm-3 col-lg-3" align="center">
<span class="fa-fw fa-user" style="font-size: 120px;">
</div>
<div class=" col-sm-9 col-lg-9"> <div class="col-sm-3 col-lg-3 text-center">
<table class="table table-user-information"> <span class="fa-fw fa-user" style="font-size: 120px;"></span>
<tbody> </div>
<tr>
<td><strong>{{t 'user_username'}}</strong></td>
<td>{{username}}</td> <div class=" col-sm-9 col-lg-9">
</tr> <table class="table table-user-information">
<tbody>
<tr>
<td><strong>{{t 'user_username'}}</strong></td>
<tr> <td>{{username}}</td>
<td><strong>{{t 'user_email'}}</strong></td> </tr>
<td>{{mail}}</td> <tr>
</tr> <td><strong>{{t 'user_email'}}</strong></td>
<tr> <td>{{mail}}</td>
<td><strong>{{t 'user_emailaliases'}}</strong></td> </tr>
<td>{{#if mail-aliases}} {{#mail-aliases}} <tr>
{{.}}<br> <td><strong>{{t 'user_emailaliases'}}</strong></td>
{{/mail-aliases}} {{/if}}</td>
</tr>
<tr> <td>{{#if mail-aliases}} {{#mail-aliases}}
<td><strong>{{t 'user_emailforward'}}</strong></td> {{.}}<br>
{{/mail-aliases}} {{/if}}</td>
</tr>
<td>{{#if mail-forward}} {{#mail-forward}} <tr>
{{.}}<br> <td><strong>{{t 'user_emailforward'}}</strong></td>
{{/mail-forward}} {{/if}}</td>
</tr> <td>{{#if mail-forward}} {{#mail-forward}}
</tbody> {{.}}<br>
</table> {{/mail-forward}} {{/if}}</td>
<span class="pull-right"> </tr>
<a href="#/users/{{username}}/edit" class="btn btn-info slide"><span class="fa-pencil-square-o"/> {{t 'user_username_edit' username}}</a> </tbody>
<a href="#/users/{{username}}/delete" class="btn btn-danger slide back"><span class="fa-trash-o"/> {{t 'delete'}}</a> </table>
</span> <span class="pull-right">
</div> <a href="#/users/{{username}}/edit" class="btn btn-info slide"><span class="fa-pencil-square-o"/> {{t 'user_username_edit' username}}</a>
</div> <a href="#/users/{{username}}/delete" class="btn btn-danger slide back"><span class="fa-trash-o"/> {{t 'delete'}}</a>
</div> </span>
</div> </div>
</div>
</div>