Sha256: b1edf42edd5a75a51fa7070477681a666f15ccc38ede23f5677540c370125067

Contents?: true

Size: 1.45 KB

Versions: 8

Compression:

Stored size: 1.45 KB

Contents

<form name="productForm" class="col-sm-5" novalidate role="form">

  <div bst-form-group label="{{ 'Name' | translate }}">
    <input id="name"
           name="name"
           ng-model="product.name"
           type="text"
           autofocus
           required/>
  </div>

  <div bst-form-group label="{{ 'Label' | translate }}">
    <input id="label"
           name="label"
           ng-model="product.label"
           type="text"
           required/>
  </div>

  <div bst-form-group label="{{ 'GPG Key' | translate }}">
    <select id="gpg_key_id"
            name="gpg_key_id"
            ng-model="product.gpg_key_id"
            ng-options="gpg_key.id as gpg_key.name for gpg_key in gpgKeys">
      <option value=""></option>
    </select>
  </div>

  <div bst-form-group label="{{ 'Sync Plan' | translate }}">
    <select id="sync_plan_id"
            name="sync_plan_id"
            ng-model="product.sync_plan_id"
            ng-options="syncPlan.id as syncPlan.name for syncPlan in syncPlans">
      <option value=""></option>
    </select>
    <a ui-sref="products.new.sync-plan" translate>+ New Sync Plan</a>
  </div>

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

  <div bst-form-buttons
       on-cancel="transitionTo('products')"
       on-save="save(product)"
       working="working">
  </div>

</form>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
katello-3.3.2 engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html
katello-3.3.1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html
katello-3.3.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html
katello-3.3.0.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html
katello-3.3.0 engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html
katello-3.3.0.rc2 engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html
katello-3.3.0.rc1.1 engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html
katello-3.3.0.rc1 engines/bastion_katello/app/assets/javascripts/bastion_katello/products/new/views/product-new-form.html