Files
TokiTranslate/app/views/dictionary/show.html.erb
T

11 lines
174 B
ERB

<div>
<h1><%= @letter.to_s %></h1>
</div>
<% @words.each do |word| %>
<div>
<h2><%= word.word %></h2>
<%= render "definitions", word: word %>
</div>
<% end %>