diff --git a/app/views/home/index.html.erb b/app/views/home/index.html.erb index ac689b2..de5645f 100644 --- a/app/views/home/index.html.erb +++ b/app/views/home/index.html.erb @@ -11,13 +11,13 @@
description: <%=job.description%>
+<%= Job.human_attribute_name(:description) %>: <%=job.description%>
requirements: <%=job.requirements%>
+<%= Job.human_attribute_name(:requirements) %>: <%=job.requirements%>
| <%= t('activerecord.models.job') %> | -<%= t('activerecord.models.user') %> | -<%= t('activerecord.attributes.subscription.cover_letter') %> | -<%= t('activerecord.attributes.subscription.created_at') %> | -<%= t('activerecord.attributes.subscription.status') %> | +<%= Job.model_name.human(count: 1) %> | +<%= User.model_name.human(count: 1) %> | +<%= Subscription.human_attribute_name(:cover_letter) %> | +<%= Subscription.human_attribute_name(:created_at) %> | +<%= Subscription.human_attribute_name(:status) %> |
|---|