rubyforgood/babywearing

View on GitHub
app/views/email_templates/_placeholders.html.erb

Summary

Maintainability
Test Coverage
<%
  placeholders = EmailTemplate::PLACEHOLDERS
%>
<a name="placeholders" />
<table class="email-placeholders">
  <thead>
    <th>Placeholder</th><th>Substituted With</th>
  </thead>
  <tbody>
    <% placeholders.each do |k, v| %>
      <tr>
        <td>
          <%= k %>
        </td>
        <td>
          <%= v %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>