diff --git a/htdocs/projet/tasks/time.php b/htdocs/projet/tasks/time.php
index c4dd53315a3..8eacca6f09e 100644
--- a/htdocs/projet/tasks/time.php
+++ b/htdocs/projet/tasks/time.php
@@ -250,7 +250,7 @@ if (($id > 0 || ! empty($ref)) || $projectidforalltimes > 0)
$linkback = ''.$langs->trans("BackToList").'';
// Ref
- print '
| ';
+ print ' |
| ';
print $langs->trans("Ref");
print ' | ';
// Define a complementary filter for search of next/prev ref.
@@ -291,6 +291,19 @@ if (($id > 0 || ! empty($ref)) || $projectidforalltimes > 0)
print dol_print_date($projectstatic->date_end,'day');
print ' |
';
+ // Budget
+ print '| '.$langs->trans("Budget").' | ';
+ if (strcmp($object->budget_amount, '')) print price($object->budget_amount,'',$langs,0,0,0,$conf->currency);
+ print ' |
';
+
+ // Other options
+ $parameters=array();
+ $reshook=$hookmanager->executeHooks('formObjectOptions',$parameters,$object,$action); // Note that $action and $object may have been modified by hook
+ if (empty($reshook) && ! empty($extrafields_project->attribute_label))
+ {
+ print $object->showOptionals($extrafields_project);
+ }
+
print '';
dol_fiche_end();