リビジョン 8f01c1db
| app/controllers/glossary_terms_controller.rb | ||
|---|---|---|
|
class GlossaryTermsController < ApplicationController
|
||
|
|
||
|
def index
|
||
|
@glossary_terms = GlossaryTerm.all
|
||
|
end
|
||
|
end
|
||
| app/views/glossary_terms/index.html.erb | ||
|---|---|---|
|
<h2>GlossaryTermsController#index</h2>
|
||
|
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<td>name</td>
|
||
|
<td>description</td>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<% @glossary_terms.each do |term| %>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<%= term.name %>
|
||
|
</td>
|
||
|
<td>
|
||
|
<%= term.description %>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<% end %>
|
||
|
</tbody>
|
||
|
</table>
|
||
[phase-1]index view