We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 284bf71 commit b6f022dCopy full SHA for b6f022d
1 file changed
app/View/Themed/Mobile/Containers/add.ctp
@@ -1,6 +1,7 @@
1
<?php
2
echo $this->Form->create('Container', array('url' => array('controller' => 'containers', 'action' => 'add')));
3
echo $this->Form->input('name', array('label' => __('Container Name'), 'class' => 'focus'));
4
+ echo $this->Form->input('location_id', array('label' => __('Location'), 'options' => $location_list, 'empty' => '-- Unassigned --', 'class' => 'form-control'));
5
echo '<br/>';
6
echo $this->Form->submit(__('Add'), array('div' => false, 'data-theme' => 'b'));
7
echo $this->Form->end();
0 commit comments