show full name of assigned user
This commit is contained in:
parent
76e19f717c
commit
547f0437a9
|
@ -13,7 +13,7 @@
|
|||
.container
|
||||
.image
|
||||
= image_tag(avatar_url(user, :micro), :alt => 'avatar')
|
||||
%span.name= link_to(user.uname, user_path(user))
|
||||
%span.name= link_to(user.fullname, user_path(user))
|
||||
%span= t('layout.issues.is_assigned')
|
||||
= hidden_field_tag "user-#{index}", user.id, :name => "issue[assignee_id]"
|
||||
.both
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
- if user
|
||||
.image
|
||||
=image_tag(avatar_url(user, :micro), :alt => 'avatar')
|
||||
%span.name= link_to(user.uname, user_path(user))
|
||||
%span.name= link_to(user.fullname, user_path(user))
|
||||
%span= t('layout.issues.is_assigned')
|
||||
- else
|
||||
%span= t('layout.issues.no_one_is_assigned')
|
||||
|
|
Loading…
Reference in New Issue