Sha256: 7c011a7ed922388b1051c9e4848cbb4611878a2bb363ba2d249c8ae9f8712fdb

Contents?: true

Size: 921 Bytes

Versions: 6

Compression:

Stored size: 921 Bytes

Contents

<%= simple_fields_for 'question', @questions do |f| %>
    <table class="number_hints">
      <tr>
        <td>Number Prefix</td><td>Number Suffix</td>
      </tr>
        <td>
          <%= f.input :prefix, :label => false %>
        </td>
        <td>
          <%= f.input :suffix, :label => false %>
        <td>
      <tr>
    </table>
  <%= f.simple_fields_for :answers, @questions.answers.first do |a| %>
    <%= a.hidden_field :text %>
  <% end -%>
<% end -%>
<br>
<span style='font-weight:normal;'>
Hint: affects how the number will be shown.<br/>
E.g. the number 60 could be shown as follows:<br/><br />
  <table id="number_hint" style="margin-left:2em;">
    <tr><td>Number Suffix</td><td>Number Prefix</td><td>Shown as</td>
    <tr><td>$</td><td>USD</td><td>$60 USD</td>
    <tr><td></td><td>Months</td><td>60 Months</td></tr>
    <tr><td></td><td>Inches</td><td>60 Inches</td></tr>
  </table>
</span>
<br />

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
upgrade_surveyor_gui-0.1.3 app/views/surveyor_gui/questions/_no_picks.html.erb
upgrade_surveyor_gui-0.1.2 app/views/surveyor_gui/questions/_no_picks.html.erb
surveyor_gui-0.1.2 app/views/surveyor_gui/questions/_no_picks.html.erb
surveyor_gui-0.1.1 app/views/surveyor_gui/questions/_no_picks.html.erb
surveyor_gui-0.1.0 app/views/surveyor_gui/questions/_no_picks.html.erb
surveyor_gui-0.0.3 app/views/questions/_no_picks.html.erb