2021-11-22 14:41:40 +01:00
|
|
|
<td>
|
|
|
|
{{ sponsoringOrg.familySponsorshipFriendlyName }}
|
|
|
|
</td>
|
|
|
|
<td>{{ sponsoringOrg.name }}</td>
|
|
|
|
<td class="table-action-right">
|
2021-12-02 02:48:05 +01:00
|
|
|
<div class="dropdown" appListDropdown>
|
|
|
|
<button
|
|
|
|
class="btn btn-outline-secondary dropdown-toggle"
|
|
|
|
type="button"
|
|
|
|
id="dropdownMenuButton"
|
|
|
|
data-toggle="dropdown"
|
|
|
|
aria-haspopup="true"
|
|
|
|
aria-expanded="false"
|
|
|
|
appA11yTitle="{{ 'options' | i18n }}"
|
|
|
|
>
|
2022-01-27 18:25:58 +01:00
|
|
|
<i class="bwi bwi-cog bwi-lg" aria-hidden="true"></i>
|
2021-12-02 02:48:05 +01:00
|
|
|
</button>
|
|
|
|
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenuButton">
|
|
|
|
<button
|
|
|
|
#resendEmailBtn
|
|
|
|
[appApiAction]="resendEmailPromise"
|
|
|
|
class="dropdown-item btn-submit"
|
|
|
|
[disabled]="resendEmailBtn.loading"
|
|
|
|
(click)="resendEmail()"
|
|
|
|
[attr.aria-label]="'resendEmailLabel' | i18n: sponsoringOrg.familySponsorshipFriendlyName"
|
|
|
|
>
|
2022-01-27 18:25:58 +01:00
|
|
|
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
|
2021-12-02 02:48:05 +01:00
|
|
|
<span>{{ "resendEmail" | i18n }}</span>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
#revokeSponsorshipBtn
|
|
|
|
[appApiAction]="revokeSponsorshipPromise"
|
|
|
|
class="dropdown-item text-danger btn-submit"
|
|
|
|
[disabled]="revokeSponsorshipBtn.loading"
|
|
|
|
(click)="revokeSponsorship()"
|
|
|
|
[attr.aria-label]="'revokeAccount' | i18n: sponsoringOrg.familySponsorshipFriendlyName"
|
|
|
|
>
|
2022-01-27 18:25:58 +01:00
|
|
|
<i class="bwi bwi-spinner bwi-spin" title="{{ 'loading' | i18n }}" aria-hidden="true"></i>
|
2021-12-02 02:48:05 +01:00
|
|
|
<span>{{ "remove" | i18n }}</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-12-17 15:57:11 +01:00
|
|
|
</div>
|
2021-11-22 14:41:40 +01:00
|
|
|
</td>
|