Sha256: 510becb0bbfdaedf09a70073fd7c29ea8f52c8832f44642c4d0853067b1244b5

Contents?: true

Size: 1.25 KB

Versions: 6

Compression:

Stored size: 1.25 KB

Contents

<%= form_with(model: tutorial_post, local: true) do |form| %>

  <!-- Form Input Fields -->
  <div class="form-group field_with_errors">
    <%= form.label :tutorial_post_step, "Tutorial Step" %>
		<%= form.select( :tutorial_post_step, [["1","1"],["2","2"],["3","3"],["4","4"],["5","5"],["6","6"],["7","7"],["8","8"]], {}, {class: "form-control"}) %>
  </div>
  
  <div class="form-group field_with_errors">
    <%= form.label :tutorial_post_title, "Tutorial Title" %>
    <%= form.text_field :tutorial_post_title, placeholder: "Tutorial Title", class: "form-control" %>
  </div>
  
  <!-- Form Input Fields -->
  <div class="form-group field_with_errors">
    <%= form.label :tutorial_post_text, "Tutorial Text" %>
    <%= form.text_area :tutorial_post_text, placeholder: "Tutorial Text", class: "form-control" %>
  </div>

  <div class="form-group field_with_errors">
    <label>Select a Category</label>
    <%= form.collection_select :category_id, PhcdevworksTutorials::Tutorial::Category.order(:tutorial_category_name),:id, :tutorial_category_name, {}, {class: "form-control"} %>
  </div>
  <!-- Form Input Fields -->
  
  <!-- Form Submition Button -->
  <div class="actions">
    <%= form.submit class: "btn btn-primary" %>
  </div>
  <!-- For Submition Button -->

<% end %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
phcdevworks_tutorials-1.0.1 app/views/phcdevworks_tutorials/tutorial/posts/_form.html.erb
phcdevworks_tutorials-1.0.0 app/views/phcdevworks_tutorials/tutorial/posts/_form.html.erb
phcdevworks_tutorials-0.5.0 app/views/phcdevworks_tutorials/tutorial/posts/_form.html.erb
phcdevworks_tutorials-0.4.0 app/views/phcdevworks_tutorials/tutorial/posts/_form.html.erb
phcdevworks_tutorials-0.2.0 app/views/phcdevworks_tutorials/tutorial/posts/_form.html.erb
phcdevworks_tutorials-0.1.0 app/views/phcdevworks_tutorials/tutorial/posts/_form.html.erb