51 lines
1.4 KiB
HTML
51 lines
1.4 KiB
HTML
<template name="adminUserDisplay">
|
|
{{#each info}}
|
|
<img class="adminUserIcon" src="{{icon}}">
|
|
<div class="adminUserInfo">
|
|
<div class="infoTab"></div>
|
|
<p><span class="infoTitle">ID: </span><span>{{id}}</span></p>
|
|
<p><span class="infoTitle">Email: </span><span>{{email}}</span></p>
|
|
<p><span class="infoTitle">Name: </span><span>{{name}}</span></p>
|
|
</div>
|
|
{{/each}}
|
|
</template>
|
|
|
|
<template name="statusButton">
|
|
<div class="approveStatus">
|
|
<i class="fa fa-toggle-{{status}}" aria-hidden="true"></i>
|
|
</div>
|
|
</template>
|
|
|
|
<template name="userEditor">
|
|
{{#if superAdmin}}
|
|
{{> quickForm id="editUser" collection="Meteor.users" doc=userInfo schema="userSchema" type="update"}}
|
|
{{else}}
|
|
<h4>You are not authorized to edit users.</h4>
|
|
{{/if}}
|
|
</template>
|
|
|
|
<template name="createAdmin">
|
|
{{#if superAdmin}}
|
|
<div id="adminAddWrapper">
|
|
<h3>Search</h3>
|
|
<div>
|
|
{{> inputAutocomplete settings=userComplete class="form-control addAdmin" type="text" placeholder="Example: 1234@abc.xyz" }}
|
|
<button id="addAdmin" class="btn btn-primary">Add</button>
|
|
</div>
|
|
</div>
|
|
{{else}}
|
|
{{> disableUser}}
|
|
{{/if}}
|
|
</template>
|
|
|
|
<template name="disableUser">
|
|
<h4>You are not authorized to edit this.</h4>
|
|
</template>
|
|
|
|
<template name="simpleUser">
|
|
<img class="simpleUserIcon" src="{{services.google.picture}}">
|
|
<div class="simpleUserInfo">
|
|
<p>{{profile.name}}</p>
|
|
<p>{{services.google.email}}</p>
|
|
</div>
|
|
</template> |