89 lines
5.1 KiB
HTML
89 lines
5.1 KiB
HTML
<div id="communities" class="uk-container">
|
|
|
|
<div class="menubar ">
|
|
|
|
<div class="community-title uk-article-title">Communities</div>
|
|
<form target="BSFormPanel_Admin_1" class="search">
|
|
<input #inputstring (keyup.enter)="filterBySearch(inputstring.value)" placeholder="Community name..." type="text" class="uk-input uk-width-medium"/>
|
|
<button class="uk-button" type="submit">Search</button>
|
|
</form>
|
|
<a (click)="showModal()" class="uk-button uk-button-primary uk-float-right"><i></i> New Community </a>
|
|
</div>
|
|
|
|
<div class="content-wrapper" id="contentWrapper">
|
|
<div>
|
|
<div class="contentPanel">
|
|
<div class="uk-alert-danger" uk-alert style="display: none;" aria-hidden="true">
|
|
<span></span><span></span><span></span></div>
|
|
<div class="uk-alert-success" uk-alert style="display: none;" aria-hidden="true">
|
|
<span></span><span></span><span></span></div>
|
|
<div class="uk-alert" uk-alert style="display: none;" aria-hidden="true"><span></span><span></span><span></span></div>
|
|
|
|
<div class="page-controls">
|
|
<div class=" filters ">
|
|
<div class="show-options uk-float-right">
|
|
<button class="uk-button" type="button"> Bulk Actions</button>
|
|
<div uk-dropdown="mode: click">
|
|
<ul class="uk-nav uk-dropdown-nav">
|
|
<li><a (click)="confirmDeleteSelectedCommunities()"><i></i> Delete </a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<div class="gwt-HTML">
|
|
<div class="row users-list">
|
|
<div class="col-md-12">
|
|
<table class="uk-table uk-table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th><input id="allCommunityCheckbox" type="checkbox" (change)="toggleCheckBoxes($event)"></th>
|
|
<th>Name</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody >
|
|
<tr *ngFor="let check of checkboxes; let i=index">
|
|
<td><input id="{{check.community._id}}" class="checkBox" type="checkbox"
|
|
name="communitiescb[]" value="{{check.community._id}}" [(ngModel)]="check.checked">
|
|
</td>
|
|
<td>
|
|
<div class="name" href="#">{{check.community.name}}</div>
|
|
</td>
|
|
<td>
|
|
<div class="actions" href="#">
|
|
<input title="Edit" src="imgs/icn_edit.png" class="edit" type="image" (click)="editCommunity(i)">
|
|
<input title="Delete" src="imgs/icn_trash.png" class="delete" type="image" (click)="confirmDeleteCommunity(check.community._id)">
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div *ngIf="checkboxes.length==0" class="col-md-12">
|
|
<div class="uk-alert-warning" uk-alert>No communities found</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<modal-form #saveModal [saveText]="'Save'" [titleText]="'Add a new Community'" [formGroup]="formGroup" [type]="'community'"
|
|
[isModalShown]="isModalShown" (emmitObject)="communitySavedSuccessfully($event)" (emmitError)="handleError($event)">
|
|
<community-form [group]="formGroup"></community-form>
|
|
</modal-form>
|
|
|
|
<modal-form #updateModal [saveText]="'Update'" [titleText]="'Update Community'" [formGroup]="formGroup" [type]="'community'"
|
|
[isModalShown]="isModalShown" (emmitObject)="communityUpdatedSuccessfully($event)" (emmitError)="handleError($event)">
|
|
<community-form [group]="formGroup"></community-form>
|
|
</modal-form>
|
|
|
|
<delete-confirmation-dialog #deleteConfirmationModal [isModalShown]="isModalShown" (emmitObject)="confirmedDeleteCommunities($event)">
|
|
Are you sure you want to delete the selected community(-ies)?
|
|
</delete-confirmation-dialog>
|