Guest User

Untitled

a guest
Jul 11th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. <div id="overview">
  2.  
  3. <div class="heading">
  4. <p>Application Overview</p>
  5. </div>
  6.  
  7. <div id="content">
  8. <div id="sidebar">
  9. <div id="3_easy_steps">
  10. <p style="color:#BB6307;"><strong>3 Easy Steps to Submit Your Application</strong></p>
  11. <p>
  12. <strong>1</strong> - Fill out the Application<br>
  13. <strong>2</strong> - Pay the $20 Application Fee<br>
  14. <strong>3</strong> - Email 3 Recommendation Forms
  15. </p>
  16. </div>
  17. <div id="faq">
  18.  
  19. </div>
  20. </div>
  21.  
  22. <div id="left">
  23. <div id="overview_steps">
  24. <h3>Your Application</h3>
  25. <%= render :partial => 'overview_steps' if @user.detail.submitted == nil %>
  26. <%= render :partial => 'app_submitted' if @user.detail.submitted == true %>
  27.  
  28. </div>
  29.  
  30. <div id="overview_pay_fee">
  31. <h3>Application Fee</h3>
  32. <%= render :partial => 'pay_disabled' if @user.detail.submitted == nil %>
  33. <%= render :partial => 'pay_enabled' if @user.detail.submitted == true %>
  34. <%= render :partial => 'fee_paid' if @user.detail.paid == true %>
  35. </div>
  36.  
  37. <div id="overview_references">
  38. <h3>References</h3>
  39. <%= render :partial => 'refs_status' if @user.reference != nil%>
  40. <%= render :partial => 'refs_disabled' if @user.detail.paid == nil %>
  41. <%= render :partial => 'refs_enabled' if @user.detail.paid == true %>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
Add Comment
Please, Sign In to add comment