jendiamond / railsgirls-signup

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

Add to success images to users/:id/tutorials/:id show page once tutorials are submitted #58

Closed jendiamond closed 7 years ago

jendiamond commented 7 years ago

Pull Request #59

tryruby-success.png

tryruby-success

trygit-success.jpg

trygit-success

terminal-success.jpg

terminal-success

htmlcss-success.jpg

htmlcss-success

Rails Girls LA Logo - railsgirlsla.png

railgirlsla

jendiamond commented 7 years ago
<% if @tutorial.try_ruby %>
  <h3>Sweet! You have passed the Fox Level.</h3>
  <%= image_tag "tryruby-success.png" %>
<% end %>
<% if @tutorial.try_git %>
  <h3> Awesome! You have passed the Octocat Level.</h3>
  <%= image_tag "trygit-success.jpg" %>
<% end %>
<% if @tutorial.terminal %>
  <h3>Hooray! You have passed the CloverLevel.</h3>
  <%= image_tag "terminal-success.jpg" %>
<% end %>
<% if @tutorial.html_css %>
  <h3>Fantastic! You have passed the Serpent Level. </h3>
  <%= image_tag "htmlcss-success.jpg" %>
<% end %>