Current File : //usr/local/jetapps/var/www/jetbackup5/docroot/app/views/accountActions.htm
<div style="padding: 20px;">
    <ul class="action-icons">
        <li>
            <a href="{{primaryURL}}/accountManage/{{account._id}}" ng-click="changeView('/accountManage/' + account._id)">
                <em aria-hidden="true" class="fas fa-cog"></em>
                {{ lang.t("Manage Account") }}
            </a>
        </li>
        <!--li tooltip="bottom|Enabling backup quota on an account will allow backup usage to be sent by daily cron or API call to your CRM system (WHMCS for example).  In order for the backup quota to work, you must enable both the account and the backup job.  For more information, please visit the Accounts documentation.">
            <button ng-click="toggleBackupQuota(account)">
                <em aria-hidden="true" class="fas" ng-class="{ 'fa-calculator': !loaders.quota, 'fa-spin fa-circle-notch': loaders.quota }"></em>
                {{ lang.t("Backup Quota") }}
                <span class="switch-toggle" ng-class="{ 'toggle-enabled': account.backup_quota, 'toggle-disabled': !account.backup_quota }">
                    {{ account.backup_quota ? lang.t("Enabled") : lang.t("Disabled") }}
                </span>
            </button>
        </li-->
        <li ng-show="!info.bod_disabled && account.max_snapshots !== 0">
            <button ng-click="createSnapshot(account)">
                <em aria-hidden="true" class="fas" ng-class="{ 'fa-archive': !loaders.snapshot, 'fa-spin fa-circle-notch': loaders.snapshot }"></em>
                {{ lang.t("Create Backup On Demand") }}
            </button>
        </li>
        <li ng-if="perm.canManageAccountBackups">
            <button ng-click="viewBackups(account)">
                <em aria-hidden="true" class="fas fa-cubes"></em>
                {{ lang.t("View Backups") }}
            </button>
        </li>
        <li ng-if="perm.canDownloadBackups">
            <button ng-click="viewDownloads(account)">
                <em aria-hidden="true" class="fas fa-cloud-download-alt"></em>
                {{ lang.t("View Downloads") }}
            </button>
        </li>
    </ul>
</div>