<% title "Daily Journal" %>
<% if !session[:enrollment_id].blank? %>

Daily Journal

<%= render 'program_logger' %>
<% elsif @enrollments.blank? %>
You're not currently enrolled in any Freeman Formula programs. Please visit our website www.freemanformula.com to learn about our exciting, high-intensity, programs.
<% else %>
Select a Program to Work In: <%= collection_select("enrollment", "id", Enrollment.find_all_by_user_id(current_user), "id", "program_name", {:selected=> get_current_enrollment_or_nil, :include_blank => 'Select...' }, {:onchange=>"document.location.href='?eid='+this.value"} ) %>
<% end %>