diff --git a/app/assets/javascripts/property_hire_calendar_frontend.js b/app/assets/javascripts/property_hire_calendar_frontend.js
index 8fb74a1..8f314f6 100644
--- a/app/assets/javascripts/property_hire_calendar_frontend.js
+++ b/app/assets/javascripts/property_hire_calendar_frontend.js
@@ -153,7 +153,7 @@ var EventDialog = function(calendar,event){
'
' +
- '
' + time_string + '
' +
+ '
' + time_string + '
' + _event.hiring_person_name + '
'
_event.note +
'
' +
'' +
diff --git a/app/models/p_hire.rb b/app/models/p_hire.rb
index 30f8ba1..c257d58 100644
--- a/app/models/p_hire.rb
+++ b/app/models/p_hire.rb
@@ -23,6 +23,8 @@ class PHire
{
:id => self.id.to_s,
:title => self.reason_for_hire,
+ :hiring_person_id => self.hiring_person_id,
+ :hiring_person_name => self.hiring_person_name,
:note => self.note_for_hire || "",
:start => self.start_time.rfc822,
:end => self.end_time.rfc822,