forked from saurabh/orbit4-5
11 lines
343 B
Plaintext
11 lines
343 B
Plaintext
<div for="<%= @role.id.to_s %>">
|
|
<label>Role status for <%= @role.title %></label>
|
|
<div class="control-group clear">
|
|
<% @statuses.each do |status| %>
|
|
<input type="radio" name="member_profile[role_status_ids][]" value="<%= status.id.to_s %>" />
|
|
<label class="role-label">
|
|
<%= status.title %>
|
|
</label>
|
|
<% end %>
|
|
</div>
|
|
</div> |