diff options
author | DavisLWebb <davislwebb@ymail.com> | 2014-03-02 15:06:54 -0500 |
---|---|---|
committer | DavisLWebb <davislwebb@ymail.com> | 2014-03-02 15:06:54 -0500 |
commit | b677983475513c78108406901fccd5cbe9604ca6 (patch) | |
tree | f83b5e20930cbe1be890af41ea1d0c0d2ebf5e2e /app/views/alerts/_form.html.erb | |
parent | 4e682a9a8596326a2d1faab6c44e5a54918c5ba0 (diff) | |
parent | 1bfc0513fa113f5b4a61e89d74e42dd78ece44e7 (diff) |
Merge branch 'master' of http://github.com/LukeShu/leaguer
Conflicts:
Gemfile.lock
app/views/layouts/application.html.erb
config/routes.rb
Diffstat (limited to 'app/views/alerts/_form.html.erb')
-rw-r--r-- | app/views/alerts/_form.html.erb | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/app/views/alerts/_form.html.erb b/app/views/alerts/_form.html.erb deleted file mode 100644 index b60eaf2..0000000 --- a/app/views/alerts/_form.html.erb +++ /dev/null @@ -1,25 +0,0 @@ -<%= 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 %> |