diff options
author | David Gay <david@davidgay.org> | 2021-05-20 19:01:25 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-05-20 19:01:25 -0400 |
commit | 2dd5608409f0a506cd2a682107d9be302cec8079 (patch) | |
tree | a5f856e5d7bb3a173bd8c5c361a2e7a144c320b5 /app/views/activities | |
parent | d117dea29052b1ca23b1c848d92f1f9803945304 (diff) |
Implement learning activities from other activities
Diffstat (limited to 'app/views/activities')
-rw-r--r-- | app/views/activities/_results.html.erb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/views/activities/_results.html.erb b/app/views/activities/_results.html.erb index 0e540dd..0fef8fb 100644 --- a/app/views/activities/_results.html.erb +++ b/app/views/activities/_results.html.erb @@ -9,6 +9,8 @@ </p> <% when "hearth_amenity" %> <p>You constructed <%= result[:hearth_amenity].name %>.</p> + <% when "activity" %> + <p>You realized how to <%= result[:activity].name %>!</p> <% when "error" %> <p><%= result[:message] %></p> <% end %> |