1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 00:42:41 +01:00

Add Event Description to Event Page

Summary: Let's people know what the event is, specifically.

Test Plan: View an Event Page

Reviewers: epriestley, btrahan

Reviewed By: btrahan

CC: Korvin, epriestley, aran

Differential Revision: https://secure.phabricator.com/D8267
This commit is contained in:
Chad Little 2014-02-17 16:08:25 -08:00
parent f302bfc8f8
commit e537c76106

View file

@ -101,6 +101,11 @@ final class PhabricatorCalendarEventViewController
pht('Ends'), pht('Ends'),
phabricator_datetime($event->getDateTo(), $viewer)); phabricator_datetime($event->getDateTo(), $viewer));
$properties->addSectionHeader(
pht('Description'),
PHUIPropertyListView::ICON_SUMMARY);
$properties->addTextContent($event->getDescription());
return $properties; return $properties;
} }