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

pictcode / app / View / Programs / add.ctp @ b3a58ce1

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

1 b3a58ce1 hasse
<div class="programs form">
2
<?php echo $this->Form->create('Program'); ?>
3
	<fieldset>
4
		<legend><?php echo __('Add Program'); ?></legend>
5
	<?php
6
		echo $this->Form->input('user_id');
7
		echo $this->Form->input('pict_code');
8
		echo $this->Form->input('title');
9
		echo $this->Form->input('description');
10
		echo $this->Form->input('data');
11
		echo $this->Form->input('status');
12
		echo $this->Form->input('view_count');
13
	?>
14
	</fieldset>
15
<?php echo $this->Form->end(__('Submit')); ?>
16
</div>
17
<div class="actions">
18
	<h3><?php echo __('Actions'); ?></h3>
19
	<ul>
20
21
		<li><?php echo $this->Html->link(__('List Programs'), array('action' => 'index')); ?></li>
22
		<li><?php echo $this->Html->link(__('List Users'), array('controller' => 'users', 'action' => 'index')); ?> </li>
23
		<li><?php echo $this->Html->link(__('New User'), array('controller' => 'users', 'action' => 'add')); ?> </li>
24
	</ul>
25
</div>