left4me/rails/app/views/key_binds/index.html.erb
mwiegand 5ab99c7779
wip
2022-11-27 17:32:21 +01:00

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 %>