allow for newlines in profile bio
This commit is contained in:
parent
d19353ed8f
commit
f7a7dff53b
1 changed files with 2 additions and 3 deletions
|
|
@ -33,13 +33,12 @@
|
||||||
%li
|
%li
|
||||||
= link_to aspect.name, aspect
|
= link_to aspect.name, aspect
|
||||||
= link_to "x", {:controller => "aspects", :action => "remove_from_aspect", :person_id => person.id, :aspect_id => aspect.id}, :confirm => t('.remove_from', :name => person.name, :aspect => aspect), :remote => true, :class => "delete"
|
= link_to "x", {:controller => "aspects", :action => "remove_from_aspect", :person_id => person.id, :aspect_id => aspect.id}, :confirm => t('.remove_from', :name => person.name, :aspect => aspect), :remote => true, :class => "delete"
|
||||||
|
|
||||||
|
|
||||||
-if is_contact || person == current_user.person
|
-if is_contact || person == current_user.person
|
||||||
%ul#profile_information
|
%ul#profile_information
|
||||||
%li
|
%li
|
||||||
%h3 #{t('.bio')}
|
%h3 #{t('.bio')}
|
||||||
= person.profile.bio
|
= markdownify(person.profile.bio, :newlines => true)
|
||||||
|
|
||||||
%li
|
%li
|
||||||
.span-4
|
.span-4
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue