You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
851 B
23 lines
851 B
<%= form_with model: article do |form| %>
|
|
<div class="form-group">
|
|
<div class="form-group string optional">
|
|
<%= form.label "标题", :class => "string optional control-label" %>
|
|
<%= form.text_field :title , :class => "string optional form-control" %>
|
|
<% article.errors.full_messages_for(:title).each do |message| %>
|
|
<div><%= message %></div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="form-group string optional">
|
|
<%= form.label :body , :class => "string optional control-label" %>
|
|
<%= form.text_area :body , :class => "string optional form-control" %>
|
|
<% article.errors.full_messages_for(:body).each do |message| %>
|
|
<div><%= message %></div>
|
|
<% end %>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<%= form.submit "提交", :class => "btn btn-primary", data: { disable_with: "Submiting..." } %>
|
|
|
|
<% end %>
|
|
|