jendiamond / railsgirls-signup

https://railsgirls-signup.herokuapp.com
3 stars 3 forks source link

When a member has finished all 4 tutorials they should receive a confirmation by email #24

Open jendiamond opened 8 years ago

jendiamond commented 8 years ago

Hi <%= user.name %>,

Congratulations, you have completed all four tutorials. Your application is being reviewed. We will get back to you shortly. https://railsgirls-signup.herokuapp.com/users/<%= @user.id %>/tutorials/<%= @user.id %>


<h3>Your Completed Tutorials:</h3>
<% if @tutorial.try_ruby %>
  <%= image_tag "tryruby-success.png", width: '75' %>
<% end %>
<% if @tutorial.try_git %>
  <%= image_tag "trygit-success.jpg", width: '75' %>
<% end %>
  <% if @tutorial.terminal %>
  <%= image_tag "terminal-success.jpg", width: '75' %>
<% end %>
<% if @tutorial.html_css %>
  <%= image_tag "htmlcss-success.jpg", width: '75' %>
<% end %>

Jen Diamond