impress/app/views/contributions/_contribution.html.haml
Emi Matchu 64b1d11faa Remove old record_tag_helper gem
This is a transitional gem to help with upgrading from old versions of
Rails: it provides a deprecated feature that Rails removed.

I audited and I *think* we only used it in one place, and that this one
place doesn't even use any of its functionality for styling or
scripting? So, begone!
2024-09-26 12:50:47 -07:00

11 lines
534 B
Text

- contributed = contribution.contributed
%li
%span.point-value= contribution.point_value
= t 'contributions.contribution.description_html',
:user_link => link_to(contribution.user.name,
user_contributions_path(contribution.user),
:class => 'username'),
:contributed_description => contributed_description(contributed)
.time-ago
= t 'contributions.contribution.created_at_html',
:created_at_ago => labeled_time_ago_in_words(contribution.created_at)