blob: c2eb7c797d0ea4b59aec45de2baf255b6ef03054 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[?php if ($sf_request->getError('delete')): ?]
<div class="form-errors">
<h2>Could not delete the selected <?php echo sfInflector::humanize($this->getSingularName()) ?></h2>
<ul>
<li>[?php echo $sf_request->getError('delete') ?]</li>
</ul>
</div>
[?php endif; ?]
[?php if ($sf_flash->has('notice')): ?]
<div class="save-ok">
<h2>[?php echo image_tag("information.gif","alt=[?]")?] [?php echo __($sf_flash->get('notice')) ?]</h2>
</div>
[?php endif; ?]
|