I'm having some trouble with styling my views.

Here is a particular snippet that I think illustrates well:

<p><%= @tour_request.booked_datetime ? "<strong>Confirmed For:</strong>
<span class="red">#...@tour_request.booked_datetime_string}</span>
":"<strong>Date and time requested:</strong>
#...@tour_request.daterequested} | #...@tour_request.preferredtime_string}
<strong>Alternative date and time requested:</strong>
#...@tour_request.altdaterequested} #...@tour_request.preferredtime_string}"
%></p>

That will prevent the page from loading, showing a custom error screen.

But this, will display fine:

<p><%= @tour_request.booked_datetime ? "<strong>Confirmed For:</strong>
<strong>#...@tour_request.booked_datetime_string}</strong> ":"<strong>Date
and time requested:</strong> #...@tour_request.daterequested} |
#...@tour_request.preferredtime_string} <strong>Alternative date and time
requested:</strong> #...@tour_request.altdaterequested}
#...@tour_request.preferredtime_string}" %></p>

The only difference is on the first example I had <span
class="red">#...@tour_request.booked_datetime_string}</span> and the
second I had <strong>#...@tour_request.booked_datetime_string}</strong>

I know I could just do <span class="red"><%=
@tour_request.booked_datetime_string %> but this field won't always be
displaying, so I need to find a way to make whichever that particular
tour has filled out showing, whether it's booked_datetime_string,
tour_request.daterequested, preferredtime_string or altdaterequested

Would appreciate any help!
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to