Skip to content

Commit

Permalink
Changed so that it only shows ACTIVE skills.
Browse files Browse the repository at this point in the history
  • Loading branch information
rnhurt committed Jun 16, 2009
1 parent e913611 commit 932b544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/courses/_skills_tab.html.erb
Expand Up @@ -2,7 +2,7 @@
<ul class="checklist">
<% for category in @skill_cats %>
<%= content_tag :li, category.name, :class=>"category" %>
<% for skill in category.supporting_skills %>
<% for skill in category.supporting_skills.active %>
<li>
<label for="<%= skill.id -%>">
<%= check_box_tag skill.id, "1", @course.supporting_skills.include?(skill),
Expand Down

0 comments on commit 932b544

Please sign in to comment.