Commit 8443f1c28d139d1b101a320e514606ea45babcdc
Committed by
Daniela Feitosa
1 parent
20f677b2
Exists in
master
and in
22 other branches
Moving Enterprise's business name to closer to name
(ActionItem1931)
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
app/views/shared/_organization_custom_fields.rhtml
| 1 | 1 | <%= optional_field(profile, 'display_name', f.text_field(:display_name)) %> |
| 2 | +<% if profile.enterprise? %> | |
| 3 | + <%= optional_field(profile, 'business_name', f.text_field(:business_name)) %> | |
| 4 | +<% end %> | |
| 2 | 5 | <%= optional_field(profile, 'description', f.text_area(:description, :rows => 5)) %> <!-- , :maxlength => 10 --> |
| 3 | 6 | <%= optional_field(profile, 'contact_person', f.text_field(:contact_person)) %> |
| 4 | 7 | <%= optional_field(profile, 'contact_email', f.text_field(:contact_email)) %> |
| ... | ... | @@ -18,7 +21,6 @@ |
| 18 | 21 | <% end %> |
| 19 | 22 | |
| 20 | 23 | <% if profile.enterprise? %> |
| 21 | - <%= optional_field(profile, 'business_name', f.text_field(:business_name)) %> | |
| 22 | 24 | <%= optional_field(profile, 'organization_website', f.text_field(:organization_website)) %> |
| 23 | 25 | <%= optional_field(profile, 'historic_and_current_context', f.text_area(:historic_and_current_context, :rows => 5)) %> |
| 24 | 26 | <%= optional_field(profile, 'activities_short_description', f.text_area(:activities_short_description, :rows => 5)) %> | ... | ... |