Hello, i would like the project page to show some more info, phone and adress so that our employees can get in contact with a client and also knows where to go and what's to be done at the clients.
This is what i have done so far: added adress and phone in the mysql database, and trying to find where the fields gets loaded in to the projects.php, since i would like it to show some more info.
Any information about this is welcome. Thanks!
Make the projects page show more info
Re: Make the projects page show more info
If you look at projects.php file, you'll see that projects are obtained with these calls:mattish.91 wrote:Hello, i would like the project page to show some more info, phone and adress so that our employees can get in contact with a client and also knows where to go and what's to be done at the clients.
This is what i have done so far: added adress and phone in the mysql database, and trying to find where the fields gets loaded in to the projects.php, since i would like it to show some more info.
Any information about this is welcome. Thanks!
Code: Select all
if($user->canManageTeam()) {
$active_projects = ttTeamHelper::getActiveProjects($user->team_id);
$inactive_projects = ttTeamHelper::getInactiveProjects($user->team_id);
} else
$active_projects = $user->getAssignedProjects();
-
- Posts: 4
- Joined: Tue Dec 13, 2016 5:38 am
Re: Make the projects page show more info
Awesome, ill take a look at this tomorrow! Thanks for your reply!