notionparallax / ShadowWolf

A mini ERP type app to capture people, projects and their relationships.
GNU General Public License v2.0
1 stars 6 forks source link

Add full name to title attr on team people #779

Closed hinds89 closed 9 years ago

hinds89 commented 9 years ago

@Dawil

See @notionparallax's email:

• Lets try to cull as much as we can from the notes field once it is done. • strip the dates from award contexts and put them into the date field (bendigo) • award citations are tags, shouldn't be! • get stella to put all the articles into MCT • add full name to title attr on team people

hinds89 commented 9 years ago

@Dawil Please forgive my curiosity, but would changing the following fix it?: Can I add title="{{ p.person.employee.preferred_first} {p.person.employee.preferred_last}}" to the <a> element in ShadowWolf/client/app/views/projects/showchunks/summary.html - I don't really get what the curly braces are about, as the code already seems to have 'prefferred_last' in it? From: <img ng-src="{{p.person.employee.photo.bw || 'images/fb_stormtrooper.jpg'}}"><a href="#/people/{{p.person.employee.login}}">{{ p.person.name.preferred_first }} {{ person.name.preferred_last }} <span class="hours">{{ p.hours }}</span></a> Change To: <img ng-src="{{p.person.employee.photo.bw || 'images/fb_stormtrooper.jpg'}}"><a href="#/people/{{p.person.employee.login}}" title="{{ p.person.employee.preferred_first} {p.person.employee.preferred_last}}">{{ p.person.name.preferred_first }} {{ person.name.preferred_last }} <span class="hours">{{ p.hours }}</span></a>