aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/views/articles
diff options
context:
space:
mode:
Diffstat (limited to 'guides/code/getting_started/app/views/articles')
-rw-r--r--guides/code/getting_started/app/views/articles/_form.html.erb27
-rw-r--r--guides/code/getting_started/app/views/articles/edit.html.erb5
-rw-r--r--guides/code/getting_started/app/views/articles/index.html.erb21
-rw-r--r--guides/code/getting_started/app/views/articles/new.html.erb5
-rw-r--r--guides/code/getting_started/app/views/articles/show.html.erb18
5 files changed, 0 insertions, 76 deletions
diff --git a/guides/code/getting_started/app/views/articles/_form.html.erb b/guides/code/getting_started/app/views/articles/_form.html.erb
deleted file mode 100644
index 87e3353ed2..0000000000
--- a/guides/code/getting_started/app/views/articles/_form.html.erb
+++ /dev/null
@@ -1,27 +0,0 @@
-<%= form_for @article do |f| %>
- <% if @article.errors.any? %>
- <div id="error_explanation">
- <h2><%= pluralize(@article.errors.count, "error") %> prohibited
- this article from being saved:</h2>
- <ul>
- <% @article.errors.full_messages.each do |msg| %>
- <li><%= msg %></li>
- <% end %>
- </ul>
- </div>
- <% end %>
- <p>
- <%= f.label :title %><br>
- <%= f.text_field :title %>
- </p>
-
- <p>
- <%= f.label :text %><br>
- <%= f.text_area :text %>
- </p>
-
- <p>
- <%= f.submit %>
- </p>
-<% end %>
-
diff --git a/guides/code/getting_started/app/views/articles/edit.html.erb b/guides/code/getting_started/app/views/articles/edit.html.erb
deleted file mode 100644
index 14236e2a98..0000000000
--- a/guides/code/getting_started/app/views/articles/edit.html.erb
+++ /dev/null
@@ -1,5 +0,0 @@
-<h1>Edit article</h1>
-
-<%= render 'form' %>
-
-<%= link_to 'Back', action: :index %>
diff --git a/guides/code/getting_started/app/views/articles/index.html.erb b/guides/code/getting_started/app/views/articles/index.html.erb
deleted file mode 100644
index 80e9c8c60c..0000000000
--- a/guides/code/getting_started/app/views/articles/index.html.erb
+++ /dev/null
@@ -1,21 +0,0 @@
-<h1>Listing Articles</h1>
-<table>
- <tr>
- <th>Title</th>
- <th>Text</th>
- <th></th>
- <th></th>
- <th></th>
- </tr>
-
-<% @articles.each do |article| %>
- <tr>
- <td><%= article.title %></td>
- <td><%= article.text %></td>
- <td><%= link_to 'Show', action: :show, id: article.id %></td>
- <td><%= link_to 'Edit', action: :edit, id: article.id %></td>
- <td><%= link_to 'Destroy', { action: :destroy, id: article.id },
- method: :delete, data: { confirm: 'Are you sure?' } %></td>
- </tr>
-<% end %>
-</table>
diff --git a/guides/code/getting_started/app/views/articles/new.html.erb b/guides/code/getting_started/app/views/articles/new.html.erb
deleted file mode 100644
index 652b1c9c0b..0000000000
--- a/guides/code/getting_started/app/views/articles/new.html.erb
+++ /dev/null
@@ -1,5 +0,0 @@
-<h1>New article</h1>
-
-<%= render 'form' %>
-
-<%= link_to 'Back', action: :index %>
diff --git a/guides/code/getting_started/app/views/articles/show.html.erb b/guides/code/getting_started/app/views/articles/show.html.erb
deleted file mode 100644
index 6959c80bdb..0000000000
--- a/guides/code/getting_started/app/views/articles/show.html.erb
+++ /dev/null
@@ -1,18 +0,0 @@
-<p>
- <strong>Title:</strong>
- <%= @article.title %>
-</p>
-
-<p>
- <strong>Text:</strong>
- <%= @article.text %>
-</p>
-
-<h2>Comments</h2>
-<%= render @article.comments %>
-
-<h2>Add a comment:</h2>
-<%= render "comments/form" %>
-
-<%= link_to 'Edit Article', edit_article_path(@article) %> |
-<%= link_to 'Back to Articles', articles_path %>