mirror of
https://github.com/moodle/moodle.git
synced 2025-01-19 06:18:28 +01:00
1372ef74aa
some distance between those uncomfortably close buttons.
34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<table style="margin: auto;">
|
|
<tr>
|
|
<td>
|
|
<form method="get" action="event.php" name="delete">
|
|
<p>
|
|
|
|
<input type="submit" value=" <?php print_string('yes') ?> " />
|
|
<input type="hidden" name="id" value="<?php echo $event->id?>" />
|
|
<input type="hidden" name="action" value="delete" />
|
|
<input type="hidden" name="m" value="<?php echo $m; ?>" />
|
|
<input type="hidden" name="d" value="<?php echo $d; ?>" />
|
|
<input type="hidden" name="y" value="<?php echo $y; ?>" />
|
|
<input type="hidden" name="confirm" value="1" />
|
|
|
|
</p>
|
|
</form>
|
|
</td>
|
|
<td>
|
|
<form method="get" action="view.php" name="cancel">
|
|
<p>
|
|
|
|
<input type="submit" value=" <?php print_string('no') ?> ">
|
|
<input type="hidden" name="view" value="day" />
|
|
<input type="hidden" name="cal_m" value="<?php echo $m; ?>" />
|
|
<input type="hidden" name="cal_d" value="<?php echo $d; ?>" />
|
|
<input type="hidden" name="cal_y" value="<?php echo $y; ?>" />
|
|
|
|
</p>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|