Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
coreschema / templates / bootstrap3 / inputs / select.html
Size: Mime:
<div class="form-group">
    <label>
      {{ schema.title or key }}
    </label>

  <select class="form-control" name="{{ key }}" {{ get_attrs(schema) }}>
    <option></option>
    {% for value in schema.enum %}
        <option value="{{ value }}">{{ value }}</option>
    {% endfor %}
  </select>

  {% if schema.description %}
    <span class="help-block">{{ schema.description }}</span>
  {% endif %}
</div>