Files
server/usr/share/psa-horde/mnemo/templates/data/export.inc
2026-01-07 20:52:11 +01:00

18 lines
589 B
HTML

<h1 class="header"><?php echo _("Export Notes") ?></h1>
<form method="post" name="export" action="<?php echo $GLOBALS['registry']->downloadUrl(_("notes.csv")) ?>">
<input type="hidden" name="actionID" value="export" />
<div class="horde-content">
<?php echo Horde::label('exportID', _("Select the export format:")) ?><br />
<select id="exportID" name="exportID">
<option value="<?php echo Horde_Data::EXPORT_CSV ?>">CSV</option>
</select>
</div>
<div class="horde-form-buttons">
<input type="submit" value="<?php echo _("Export") ?>" class="horde-default" />
</div>
</form>