<h2><%=t :label_glossary_terms %></h2>

<table class="list">
  <thead>
    <tr>
      <th><%=t :field_name %></th>
      <th><%=l :field_description %></th>
    </tr>
  </thead>
  <tbody>
    <% @glossary_terms.each do |term| %>
    <tr>
      <td class="name">
	<%= term.name %>
      </td>
      <td class="description">
	<%= term.description %>
      </td>
    </tr>
    <% end %>
  </tbody>
</table>
