This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/views/info/index.html.erb
2014-04-28 03:01:33 +02:00

9 lines
196 B
Plaintext

<h1>Info</h1>
<% if mod? %>
<%= link_to "New Info", new_info_path, class: "btn blue" %>
<% end %>
<ul>
<% @info.each do |info| %>
<li><%= link_to info.title, info %></li>
<% end %>
</ul>