Newer
Older
dmpopidor / app / views / questions / _new_edit_question_textfield.html.erb
@Jose Lloret Jose Lloret on 11 Sep 2017 292 bytes DMPRoadmap/roadmap#562
<div class="form-group">
    <%= f.label(:text, raw(question.text), class: 'control-label') %>
    <% if readonly %>
        <p><%= strip_tags(answer.text) %></p>
    <% else %>
        <%= text_field_tag('answer[text]', strip_tags(answer.text), class: 'form-control') %>
    <% end %>
</div>