Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
16475 anikendra 1
<div class="container">
2
	<div class="row">
3
		<div class="col-lg-3">
4
			<?php echo $this->Element('adminactions');?>
5
		</div>
6
		<div class="col-lg-9">
7
			<?php if(!empty($users)):?>
8
			<h3>Please call following users</h1>
9
			<ul class="list list-unstyled">
10
				<?php foreach ($users as $key => $user):?>
11
				<li style="border-bottom:1px solid #ccc;padding-bottom:5px;">
12
					<?php echo $this->Form->create('PaytmCalling',array('class'=>'form form-horizontal','action'=>'add')); ?>
13
					<div class="row">
14
						<span class="text-info col-xs-4"><?php echo $user['u']['first_name'];?></span>
15
						<span class="text-info col-xs-4"><?php echo $user['u']['email'];?></span>
16
						<span class="text-info col-xs-4"><?php echo $user['u']['mobile_number'];?></span>
17
					</div>
18
					<?php echo $this->Form->input('user_id',array('value'=>$user['u']['id']));?>
19
					<?php echo $this->Form->input('called',array('value'=>1));?>
20
					<?php echo $this->Form->end(__('Submit')); ?>
21
				</li>
22
				<?php endforeach;?>
23
			</ul>
24
			<?php endif;?>
25
		</div>
26
	</div>
27
</div>