Current File : //usr/local/jetapps/var/www/jetbackup5/docroot/app/views/disasterRecovery/backups.htm
<div ng-controller="disasterRecoveryBackups" class="controller-box">
    <div class="alert alert-danger" style="margin-top: 20px;" aria-hidden="false">
        <div class="alert-message">
            <div class="alert-body">
                <ul style="margin-bottom: 0px;">
                    <li>Don't forget to re-enable "Export JB Config" on your preferred destinations! All Destinations imported will have the Export JB Config setting disabled by default after Disaster Recovery.</li>
                    <li>Don't forget to re-enable your Backup Jobs! Backup Jobs that are imported from your JB Config will be disabled by default.</li>
                </ul>
            </div>
        </div>
    </div>
    <div class="table-responsive">
        <table class="table table-striped content-table">
            <thead>
            <tr>
                <th class="col-sm-1 col-md-1 col-lg-1 column-title"></th>
                <th class="col-sm-11 col-md-11 col-lg-11 column-title">{{ lang.t("Created") }}</th>
            </tr>
            </thead>
            <tbody>
            <tr ng-repeat="backup in details.drbackups">
                <td>
                    <div class="pretty p-default p-round p-smooth">
                        <input type="radio" ng-model="details.drbackup" value="{{ backup._id }}" />
                        <div class="state p-primary"><label></label></div>
                    </div>
                </td>
                <td data-title="{{ lang.t('Created') }}">
                    {{ lang.d(backup.created) }}
                </td>
            </tr>
            </tbody>
        </table>
    </div>
</div>