+
+ {"Title:"}
+ {event.get_title()}
+
+ {
+ if let Some(ref description) = event.description {
+ html! {
+
+ {"Description:"}
+ {description}
+
+ }
+ } else {
+ html! {}
+ }
+ }
+ {
+ if let Some(ref location) = event.location {
+ html! {
+
+ {"Location:"}
+ {location}
+
+ }
+ } else {
+ html! {}
+ }
+ }
+
+ {"Start:"}
+ {format_datetime(&event.start, event.all_day)}
+
+ {
+ if let Some(ref end) = event.end {
+ html! {
+
+ {"End:"}
+ {format_datetime(end, event.all_day)}
+
+ }
+ } else {
+ html! {}
+ }
+ }
+
+ {"Status:"}
+ {&event.status}
+
+