Skip to content
This repository has been archived by the owner on Oct 27, 2024. It is now read-only.

Commit

Permalink
form out of table
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Koppenhagen authored and Danny Koppenhagen committed Jul 30, 2015
1 parent a3dc779 commit 2f662af
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions frontend/templates/memberlist.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,23 @@ <h2>Mitgliederliste</h2>
<div aria-valuemax="100" aria-valuemin="0" aria-valuenow="50" class="progress-bar progress-bar-striped active" role="progressbar" style="width: 100%">Lädt...</div>
</div>
</div>
<div class="table-responsive" ng-hide="memberlistLoading">

<form class="form horizontal hidden-print">
<div class="form-group">
<div class="input-group">
<span class="input-group-btn">
<button class="btn" ng-class="{'btn-warning': listFilter, 'btn-default disabled': !listFilter}" ng-click="listFilter = ''" type="button">
Filter
<span class="glyphicon glyphicon glyphicon-filter" ng-if="!listFilter"></span>
<span class="glyphicon glyphicon-remove" ng-if="listFilter"></span>
</button>
</span>
<input class="form-control" ng-model="listFilter" placeholder="Mitgliederliste durchsuchen" type="text">
</div>
<form class="form horizontal hidden-print">
<div class="form-group">
<div class="input-group">
<span class="input-group-btn">
<button class="btn" ng-class="{'btn-warning': listFilter, 'btn-default disabled': !listFilter}" ng-click="listFilter = ''" type="button">
Filter
<span class="glyphicon glyphicon glyphicon-filter" ng-if="!listFilter"></span>
<span class="glyphicon glyphicon-remove" ng-if="listFilter"></span>
</button>
</span>
<input class="form-control" ng-model="listFilter" placeholder="Mitgliederliste durchsuchen" type="text">
</div>
</form>
</div>
</form>

<div class="table-responsive" ng-hide="memberlistLoading">

<table class="table table-striped table-bordered table-condensed table-hover" ng-if="members.data">
<thead>
Expand Down Expand Up @@ -98,7 +99,7 @@ <h2>Mitgliederliste</h2>
<span ng-if="member.superuser && isSuperuser" class="glyphicon glyphicon-user" title="Superuser"></span>
<span ng-if="member.honorary" class="glyphicon glyphicon-star text-danger" title="Ehrenmitglied"></span>
</div>

</td>
<td ng-if="attrs.td.state">{{ member.teamdrive }}</td>
<td ng-if="attrs.addr.state">{{ member.street }}
Expand Down

0 comments on commit 2f662af

Please sign in to comment.