Subversion Repositories SmartDukaan

Rev

Rev 13579 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 13579 Rev 13758
Line 2... Line 2...
2
<?php echo $this->Form->create('Brand'); ?>
2
<?php echo $this->Form->create('Brand'); ?>
3
	<fieldset>
3
	<fieldset>
4
		<legend><?php echo __('Add Brand'); ?></legend>
4
		<legend><?php echo __('Add Brand'); ?></legend>
5
	<?php
5
	<?php
6
		echo $this->Form->input('name');
6
		echo $this->Form->input('name');
-
 
7
		echo $this->Form->input('category_id');
-
 
8
		echo $this->Form->input('displayed_in_preference_page');
7
	?>
9
	?>
8
	</fieldset>
10
	</fieldset>
9
<?php echo $this->Form->end(__('Submit')); ?>
11
<?php echo $this->Form->end(__('Submit')); ?>
10
</div>
12
</div>
11
<div class="actions">
13
<div class="actions">
12
	<h3><?php echo __('Actions'); ?></h3>
14
	<h3><?php echo __('Actions'); ?></h3>
13
	<ul>
15
	<ul>
14
 
16
 
15
		<li><?php echo $this->Html->link(__('List Brands'), array('action' => 'index')); ?></li>
17
		<li><?php echo $this->Html->link(__('List Brands'), array('action' => 'index')); ?></li>
-
 
18
		<li><?php echo $this->Html->link(__('List Categories'), array('controller' => 'categories', 'action' => 'index')); ?> </li>
-
 
19
		<li><?php echo $this->Html->link(__('New Category'), array('controller' => 'categories', 'action' => 'add')); ?> </li>
16
	</ul>
20
	</ul>
17
</div>
21
</div>