Model table_headers - hook available for intercepting each row before displaying?
Hello,
I have a model in which I have successfully stripped back to show only selected columns, two of the columns are 'enum' with options of Yes and No. Their titles are 'Popular' and 'Helpful' I'd like to replace the text 'yes' and 'no' instead with an full star and an empty star as per font awesome (or similiar) - something more graphical.
Starred: <i class="fa fa-star" aria-hidden="true"></i>
Not starred: <i class="fa fa-star-o" aria-hidden="true"></i>
Is there a hook to enable me to do this?
Comments