diff --git a/app/views/_elements/tx/comment.volt b/app/views/_elements/tx/comment.volt index 08083e4..4a030c9 100644 --- a/app/views/_elements/tx/comment.volt +++ b/app/views/_elements/tx/comment.volt @@ -1,7 +1,12 @@ {{ item[1]['op'][1]['author'] }} -replied to +{{ item[1]['op'][1]['title'] == '' ? 'replied to ' +: 'posted ' + + + +}} diff --git a/app/views/account/view/votes.volt b/app/views/account/view/votes.volt index 78f48e9..27542e4 100644 --- a/app/views/account/view/votes.volt +++ b/app/views/account/view/votes.volt @@ -20,15 +20,24 @@ timeAgo::mongo($vote->_ts); ?> -
+ {% if vote.type = "incoming" %} + on + {% endif %} +
{{ vote.permlink }}
by + {% if vote.type = "outgoing" %} {{ vote.author }} + {% else %} + + {{ vote.voter }} + + {% endif %}