14 lines
287 B
Text
14 lines
287 B
Text
<p style="color: green"><%= notice %></p>
|
|
|
|
<h1>Key binds</h1>
|
|
|
|
<div id="key_binds">
|
|
<% @key_binds.each do |key_bind| %>
|
|
<%= render key_bind %>
|
|
<p>
|
|
<%= link_to "Show this key bind", key_bind %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= link_to "New key bind", new_key_bind_path %>
|