blob: b60eaf21e7bde2966d2a4df0508f9a6033bb9bc5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<%= form_for(@alert) do |f| %>
<% if @alert.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@alert.errors.count, "error") %> prohibited this alert from being saved:</h2>
<ul>
<% @alert.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :author_id %><br>
<%= f.text_field :author_id %>
</div>
<div class="field">
<%= f.label :message %><br>
<%= f.text_area :message %>
</div>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
|