Sha256: 17fba579e3d285968121c7d3fe11f552cccdb2419c3ed3891d9ec8fbb7bb08db

Contents?: true

Size: 1.9 KB

Versions: 10

Compression:

Stored size: 1.9 KB

Contents

<form ng-controller="NewSyncPlanController" name="syncPlanForm" class="col-sm-5" novalidate role="form">
 <div bst-form-group label="{{ 'Name' | translate }}">
   <input id="name"
          name="name"
          ng-model="syncPlan.name"
          type="text"
          tabindex="1"
          autofocus
          required/>
 </div>

 <div bst-form-group label="{{ 'Description' | translate }}">
   <textarea id="description"
             name="description"
             ng-model="syncPlan.description"
             tabindex="2">
   </textarea>
 </div>

 <div bst-form-group label="{{ 'Interval' | translate }}">
   <select id="interval"
           name="interval"
           ng-model="syncPlan.interval"
           ng-options="interval.id as interval.value for interval in intervals"
           tabindex="3"
           required>
      <option value="" translate>-- select an interval --</option>
   </select>
 </div>

 <div bst-form-group label="{{ 'Start Date' | translate }}">
   <div class="input-group">
     <input type="text" uib-datepicker-popup
            id="startDate"
            name="startDate"
            is-open="isOpen"
            ng-model="syncPlan.startDate"
            show-weeks="false"
            tabindex="4"
            required/>

     <span class="input-group-btn">
       <button type="button" class="btn btn-default" ng-click="isOpen = !isOpen">
         <i class="fa fa-calendar"></i>
       </button>
     </span>
   </div>
 </div>

 <div bst-form-group label="{{ 'Start Time' | translate }}">
   <div uib-timepicker show-meridian="false"
          id="startTime"
          name="startTime"
          ng-model="syncPlan.startTime"
          tabindex="5">
   </div>
   <p class="help-block" translate>The time the sync should happen in your current time zone.</p>
 </div>

 <div bst-form-buttons
      on-cancel="transitionBack()"
      on-save="createSyncPlan(syncPlan)"
      working="working">
 </div>
</form>

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
katello-3.3.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
katello-3.4.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
katello-3.4.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
katello-3.3.1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
katello-3.3.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
katello-3.3.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
katello-3.3.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
katello-3.3.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
katello-3.3.0.rc1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html
katello-3.3.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/sync-plans/new/views/new-sync-plan-form.html