diff options
Diffstat (limited to 'guides/code/getting_started/app/views')
| -rw-r--r-- | guides/code/getting_started/app/views/articles/_form.html.erb (renamed from guides/code/getting_started/app/views/posts/_form.html.erb) | 10 | ||||
| -rw-r--r-- | guides/code/getting_started/app/views/articles/edit.html.erb (renamed from guides/code/getting_started/app/views/posts/edit.html.erb) | 6 | ||||
| -rw-r--r-- | guides/code/getting_started/app/views/articles/index.html.erb | 21 | ||||
| -rw-r--r-- | guides/code/getting_started/app/views/articles/new.html.erb (renamed from guides/code/getting_started/app/views/posts/new.html.erb) | 6 | ||||
| -rw-r--r-- | guides/code/getting_started/app/views/articles/show.html.erb | 18 | ||||
| -rw-r--r-- | guides/code/getting_started/app/views/comments/_comment.html.erb | 4 | ||||
| -rw-r--r-- | guides/code/getting_started/app/views/comments/_form.html.erb | 2 | ||||
| -rw-r--r-- | guides/code/getting_started/app/views/posts/index.html.erb | 21 | ||||
| -rw-r--r-- | guides/code/getting_started/app/views/posts/show.html.erb | 18 | ||||
| -rw-r--r-- | guides/code/getting_started/app/views/welcome/index.html.erb | 4 | 
10 files changed, 55 insertions, 55 deletions
| diff --git a/guides/code/getting_started/app/views/posts/_form.html.erb b/guides/code/getting_started/app/views/articles/_form.html.erb index f2f83585e1..87e3353ed2 100644 --- a/guides/code/getting_started/app/views/posts/_form.html.erb +++ b/guides/code/getting_started/app/views/articles/_form.html.erb @@ -1,10 +1,10 @@ -<%= form_for @post do |f| %> -  <% if @post.errors.any? %> +<%= form_for @article do |f| %> +  <% if @article.errors.any? %>    <div id="error_explanation"> -    <h2><%= pluralize(@post.errors.count, "error") %> prohibited -      this post from being saved:</h2> +    <h2><%= pluralize(@article.errors.count, "error") %> prohibited +      this article from being saved:</h2>      <ul> -    <% @post.errors.full_messages.each do |msg| %> +    <% @article.errors.full_messages.each do |msg| %>        <li><%= msg %></li>      <% end %>      </ul> diff --git a/guides/code/getting_started/app/views/posts/edit.html.erb b/guides/code/getting_started/app/views/articles/edit.html.erb index 393e7430d0..14236e2a98 100644 --- a/guides/code/getting_started/app/views/posts/edit.html.erb +++ b/guides/code/getting_started/app/views/articles/edit.html.erb @@ -1,5 +1,5 @@ -<h1>Edit post</h1> -  +<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 new file mode 100644 index 0000000000..80e9c8c60c --- /dev/null +++ b/guides/code/getting_started/app/views/articles/index.html.erb @@ -0,0 +1,21 @@ +<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/posts/new.html.erb b/guides/code/getting_started/app/views/articles/new.html.erb index efa81038ec..652b1c9c0b 100644 --- a/guides/code/getting_started/app/views/posts/new.html.erb +++ b/guides/code/getting_started/app/views/articles/new.html.erb @@ -1,5 +1,5 @@ -<h1>New post</h1> -  +<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 new file mode 100644 index 0000000000..6959c80bdb --- /dev/null +++ b/guides/code/getting_started/app/views/articles/show.html.erb @@ -0,0 +1,18 @@ +<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 %> diff --git a/guides/code/getting_started/app/views/comments/_comment.html.erb b/guides/code/getting_started/app/views/comments/_comment.html.erb index 593493339e..f7cbfaebfa 100644 --- a/guides/code/getting_started/app/views/comments/_comment.html.erb +++ b/guides/code/getting_started/app/views/comments/_comment.html.erb @@ -2,14 +2,14 @@    <strong>Commenter:</strong>    <%= comment.commenter %>  </p> -  +  <p>    <strong>Comment:</strong>    <%= comment.body %>  </p>  <p> -  <%= link_to 'Destroy Comment', [comment.post, comment], +  <%= link_to 'Destroy Comment', [comment.article, comment],                 method: :delete,                 data: { confirm: 'Are you sure?' } %>  </p> diff --git a/guides/code/getting_started/app/views/comments/_form.html.erb b/guides/code/getting_started/app/views/comments/_form.html.erb index 00cb3a08f0..5850c41a17 100644 --- a/guides/code/getting_started/app/views/comments/_form.html.erb +++ b/guides/code/getting_started/app/views/comments/_form.html.erb @@ -1,4 +1,4 @@ -<%= form_for([@post, @post.comments.build]) do |f| %> +<%= form_for([@article, @article.comments.build]) do |f| %>    <p>      <%= f.label :commenter %><br />      <%= f.text_field :commenter %> diff --git a/guides/code/getting_started/app/views/posts/index.html.erb b/guides/code/getting_started/app/views/posts/index.html.erb deleted file mode 100644 index 7369f0396f..0000000000 --- a/guides/code/getting_started/app/views/posts/index.html.erb +++ /dev/null @@ -1,21 +0,0 @@ -<h1>Listing Posts</h1> -<table> -  <tr> -    <th>Title</th> -    <th>Text</th> -    <th></th> -    <th></th> -    <th></th> -  </tr> -  -<% @posts.each do |post| %> -  <tr> -    <td><%= post.title %></td> -    <td><%= post.text %></td> -    <td><%= link_to 'Show', action: :show, id: post.id %></td> -    <td><%= link_to 'Edit', action: :edit, id: post.id %></td> -    <td><%= link_to 'Destroy', { action: :destroy, id: post.id }, -                    method: :delete, data: { confirm: 'Are you sure?' } %></td> -  </tr> -<% end %> -</table> diff --git a/guides/code/getting_started/app/views/posts/show.html.erb b/guides/code/getting_started/app/views/posts/show.html.erb deleted file mode 100644 index e99e9edbb3..0000000000 --- a/guides/code/getting_started/app/views/posts/show.html.erb +++ /dev/null @@ -1,18 +0,0 @@ -<p> -  <strong>Title:</strong> -  <%= @post.title %> -</p> -  -<p> -  <strong>Text:</strong> -  <%= @post.text %> -</p> - -<h2>Comments</h2> -<%= render @post.comments %> -  -<h2>Add a comment:</h2> -<%= render "comments/form" %> -  -<%= link_to 'Edit Post', edit_post_path(@post) %> | -<%= link_to 'Back to Posts', posts_path %> diff --git a/guides/code/getting_started/app/views/welcome/index.html.erb b/guides/code/getting_started/app/views/welcome/index.html.erb index 56be8dd3cc..1cabd0d217 100644 --- a/guides/code/getting_started/app/views/welcome/index.html.erb +++ b/guides/code/getting_started/app/views/welcome/index.html.erb @@ -1,4 +1,4 @@  <h1>Hello, Rails!</h1> -<%= link_to "My Blog", controller: "posts" %> -<%= link_to "New Post", new_post_path %> +<%= link_to "My Blog", controller: "articles" %> +<%= link_to "New Article", new_article_path %> | 
