show full name of assigned user

This commit is contained in:
Vokhmin Alexey V 2013-03-29 16:20:06 +04:00
parent 76e19f717c
commit 547f0437a9
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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')