use helper again
This commit is contained in:
parent
3bfdb2dd5b
commit
9eca9f9375
|
@ -4,7 +4,4 @@ module TopicsHelper
|
|||
link_to(topic.title,topic.relative_url)
|
||||
end
|
||||
|
||||
def render_topic_next_page_link(topic, next_page)
|
||||
link_to("next page", "#{topic.relative_url}?page=#{next_page}")
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<h2>
|
||||
<a href="<%= @topic_view.relative_url %>"><%= @topic_view.title %></a>
|
||||
<%= render_topic_title(@topic_view.topic) %>
|
||||
</h2>
|
||||
<hr/>
|
||||
|
||||
|
@ -15,7 +15,7 @@
|
|||
|
||||
<% if @topic_view.next_page %>
|
||||
<p>
|
||||
<a href="<%= @topic_view.next_page_path %>">next page →</a>
|
||||
<b><%= link_to("next page →", @topic_view.next_page_path ) %></b>
|
||||
</p>
|
||||
<% end %>
|
||||
|
||||
|
|
Loading…
Reference in New Issue