Current File : //usr/local/jetapps/var/www/jetbackup5/docroot/app/views/settings/update.htm
<div ng-controller="updateSettings">

    <div class="table-responsive" style="max-width: 1200px; margin: 0 auto;">
        <table class="table table-striped content-table">
            <thead>
            <tr>
                <th></th>
                <th class="col-sm-3 col-md-3 col-lg-3 column-title">{{ lang.t("Tier") }}</th>
                <th class="col-sm-1 col-md-1 col-lg-1 column-title">{{ lang.t("Currently") }}</th>
                <th class="col-sm-8 col-md-8 col-lg-8 column-title">{{ lang.t("Description") }}</th>
            </tr>
            </thead>
            <tbody>
            <tr ng-repeat="tier in tiers" class="pointer" ng-click="saveData.tier = tier.key">
                <td>
                    <div class="pretty p-default p-round p-smooth">
                        <input type="radio" ng-model="saveData.tier" id="tier_{{tier.key}}" ng-checked="saveData.tier == tier.key" value="{{tier.key}}" />
                        <div class="state p-primary"><label for="tier_{{tier.key}}"></label></div>
                    </div>
                </td>
                <td data-title="{{ lang.t('Tier') }}" style="white-space: nowrap; font-weight: bold;">{{tier.name}}</td>
                <td data-title="{{ lang.t('Currently') }}">{{ getVersion(tier.key) }}</td>
                <td data-title="{{ lang.t('Description') }}">{{ tier.description }}</td>
            </tr>
            </tbody>
        </table>
    </div>

</div>