The content_tag helper is sometimes visually more appealing than intermixing Erb and HTML:
<%= content_tag(:td, @priority_level, :class => @priority_level) %>
There are also other templating options out there besides the default Erb.
Here's the equivalent in Haml :
%td{:class => @priority_level}= @priority_level
and Mustache:
<td class="{{priority_level}}">{{priority_level}}</td>
I think that both are easier on the eyes than Erb. If you're stuck in Erb-land, organizing your code into helper methods and partials as much as possible is a good way to keep Erb templates visually manageable.