統計
| ブランチ: | リビジョン:

pictcode / app / View / Images / view.ctp @ dd7691f4

履歴 | 表示 | アノテート | ダウンロード (1.31 KB)

1
<div class="images view">
2
<h2><?php echo __('Image'); ?></h2>
3
	<dl>
4
		<dt><?php echo __('Id'); ?></dt>
5
		<dd>
6
			<?php echo h($image['Image']['id']); ?>
7
			&nbsp;
8
		</dd>
9
		<dt><?php echo __('Name'); ?></dt>
10
		<dd>
11
			<?php echo h($image['Image']['name']); ?>
12
			&nbsp;
13
		</dd>
14
		<dt><?php echo __('Image File Name'); ?></dt>
15
		<dd>
16
			<?php echo h($image['Image']['image_file_name']); ?>
17
			&nbsp;
18
		</dd>
19
		<dt><?php echo __('Status'); ?></dt>
20
		<dd>
21
			<?php echo h($image['Image']['status']); ?>
22
			&nbsp;
23
		</dd>
24
		<dt><?php echo __('Created'); ?></dt>
25
		<dd>
26
			<?php echo h($image['Image']['created']); ?>
27
			&nbsp;
28
		</dd>
29
		<dt><?php echo __('Updated'); ?></dt>
30
		<dd>
31
			<?php echo h($image['Image']['updated']); ?>
32
			&nbsp;
33
		</dd>
34
	</dl>
35
</div>
36
<div class="actions">
37
	<h3><?php echo __('Actions'); ?></h3>
38
	<ul>
39
		<li><?php echo $this->Html->link(__('Edit Image'), array('action' => 'edit', $image['Image']['id'])); ?> </li>
40
		<li><?php echo $this->Form->postLink(__('Delete Image'), array('action' => 'delete', $image['Image']['id']), array('confirm' => __('Are you sure you want to delete # %s?', $image['Image']['id']))); ?> </li>
41
		<li><?php echo $this->Html->link(__('List Images'), array('action' => 'index')); ?> </li>
42
		<li><?php echo $this->Html->link(__('New Image'), array('action' => 'add')); ?> </li>
43
	</ul>
44
</div>