Commit fb2daa761f9808181f721d18bd95d1bf0b0d4575

Authored by Antonio Terceiro
2 parents 00a016b4 1f460658

Merge commit '1f4606589cd397f53ad8ca4f9b8046fcd279eb8c' into v0.11.x

Showing 1 changed file with 11 additions and 1 deletions   Show diff stats
app/views/profile_editor/edit.rhtml
... ... @@ -46,7 +46,17 @@
46 46 </table>
47 47 <% else %>
48 48 <table>
49   - <tr><th></th><th><%= _('Public') %></th><th><%= _('Private') %></th></tr>
  49 + <tr>
  50 + <th></th>
  51 + <th>
  52 + <%= radio_button 'profile_data', 'public_profile', 'true' %>
  53 + <label for="profile_data_public_profile_true"><u><%= _('Public') %></u></label>
  54 + </th>
  55 + <th style='padding: 2px 10px 2px 2px;'>
  56 + <%= radio_button 'profile_data', 'public_profile', 'false' %>
  57 + <label for="profile_data_public_profile_false"><u><%= _('Private') %></u></label>
  58 + </th>
  59 + </tr>
50 60 <tr>
51 61 <td> <%= _('Activate Intranet access (restricted area only for members)') %> </td><td><%= _('Yes') %></td><td><%= _('Yes') %></td>
52 62 </tr>
... ...