Skip to content

Commit

Permalink
feat: add job information next to the contact name on profile page (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
djaiss authored Oct 30, 2019
1 parent aad07b8 commit b0ae648
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,14 @@

### Enhancements:

* Add job information next to the contact name on profile page
* Use supervisor in docker images
* Use JawsDB by default on heroku instances
* Add pluralization forms for non-english-like-plural languages, for vue.js translations

### Fixes:

* Fix contact export
* Fix currencies seeder by accounting for defaults
* Fix search when prefix table is used
* Fix storage page not being displayed if a contact does not exist anymore
Expand Down
7 changes: 7 additions & 0 deletions resources/views/people/_header.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@
<h1 class="tc mb2 mt4">
<span class="{{ htmldir() == 'ltr' ? 'mr1' : 'ml1' }}">{{ $contact->name }}</span>
<contact-favorite hash="{{ $contact->hashID() }}" :starred="{{ \Safe\json_encode($contact->is_starred) }}"></contact-favorite>
@if ($contact->job)
<span class="db f5 normal">{{ $contact->job }}
@if ($contact->company)
({{ $contact->company }})
@endif
</span>
@endif
</h1>

<ul class="tc-ns mb3 {{ htmldir() == 'ltr' ? 'tl' : 'tr' }}">
Expand Down

0 comments on commit b0ae648

Please sign in to comment.