Revision control

Copy as Markdown

Other Tools

<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at https://mozilla.org/MPL/2.0/. -->
#include calendarDialogRowTemplate.inc.xhtml
#include calendarDialogDateRowTemplate.inc.xhtml
<template id="calendarDialogTemplate">
<div class="titlebar">
<button
class="button icon-button icon-only button-flat back-button"
data-l10n-id="calendar-dialog-back-button"
></button>
<h2 class="calendar-dialog-title"></h2>
<button class="button icon-button icon-only button-flat close-button"
data-l10n-id="calendar-dialog-close-button">
</button>
</div>
<div class="content">
<calendar-dialog-subview-manager
default-subview="calendarDialogMainSubview"
>
<div id="calendarDialogMainSubview" hidden="hidden">
<calendar-dialog-date-row></calendar-dialog-date-row>
<calendar-dialog-row id="locationRow">
<img
slot="icon"
class="icon-location"
src=""
data-l10n-id="calendar-dialog-location-row-icon" />
<div slot="label">
<a
id="locationLink"
class="text-link"
href=""
hidden="hidden"
></a>
<span id="locationText" hidden="hidden"></span>
</div>
</calendar-dialog-row>
</div>
</calendar-dialog-subview-manager>
</div>
<div class="footer"></div>
</template>