easyappointments/src/application/views/backend/customers.php

141 lines
6.4 KiB
PHP
Raw Normal View History

2017-09-08 15:08:05 +03:00
<script src="<?php echo base_url('assets/ext/jquery-ui/jquery-ui-timepicker-addon.js'); ?>"></script>
<script src="<?php echo base_url('assets/js/backend_customers_helper.js'); ?>"></script>
<script src="<?php echo base_url('assets/js/backend_customers.js'); ?>"></script>
2017-09-05 15:58:34 +03:00
<script>
2015-10-05 01:31:06 +03:00
var GlobalVariables = {
'csrfToken' : <?php echo json_encode($this->security->get_csrf_hash()); ?>,
2015-10-05 01:31:06 +03:00
'availableProviders': <?php echo json_encode($available_providers); ?>,
'availableServices' : <?php echo json_encode($available_services); ?>,
'dateFormat' : <?php echo json_encode($date_format); ?>,
'baseUrl' : <?php echo json_encode($base_url); ?>,
'customers' : <?php echo json_encode($customers); ?>,
'user' : {
2015-10-05 01:31:06 +03:00
'id' : <?php echo $user_id; ?>,
'email' : <?php echo json_encode($user_email); ?>,
'role_slug' : <?php echo json_encode($role_slug); ?>,
2015-10-05 01:31:06 +03:00
'privileges': <?php echo json_encode($privileges); ?>
}
};
$(document).ready(function() {
BackendCustomers.initialize(true);
});
</script>
<div id="customers-page" class="container-fluid backend-page">
2015-10-05 01:31:06 +03:00
<div class="row">
<div id="filter-customers" class="filter-records column col-xs-12 col-sm-5">
2015-10-05 01:31:06 +03:00
<form class="input-append">
<input class="key" type="text" />
<div class="btn-group">
<button class="filter btn btn-default btn-sm" type="submit" title="<?php echo lang('filter'); ?>">
<span class="glyphicon glyphicon-search"></span>
</button>
<button class="clear btn btn-default btn-sm" type="button" title="<?php echo lang('clear'); ?>">
<span class="glyphicon glyphicon-repeat"></span>
</button>
</div>
2015-10-05 01:31:06 +03:00
</form>
<h3><?php echo lang('customers'); ?></h3>
2015-10-05 01:31:06 +03:00
<div class="results"></div>
</div>
<div class="record-details col-xs-12 col-sm-7">
2015-10-05 01:31:06 +03:00
<div class="btn-toolbar">
<div id="add-edit-delete-group" class="btn-group">
<?php if ($privileges[PRIV_CUSTOMERS]['add'] == TRUE) { ?>
<button id="add-customer" class="btn btn-primary">
<span class="glyphicon glyphicon-plus"></span>
<?php echo lang('add'); ?>
2015-10-05 01:31:06 +03:00
</button>
<?php } ?>
<?php if ($privileges[PRIV_CUSTOMERS]['edit'] == TRUE) { ?>
<button id="edit-customer" class="btn btn-default" disabled="disabled">
<span class="glyphicon glyphicon-pencil"></span>
<?php echo lang('edit'); ?>
2015-10-05 01:31:06 +03:00
</button>
<?php }?>
<?php if ($privileges[PRIV_CUSTOMERS]['delete'] == TRUE) { ?>
<button id="delete-customer" class="btn btn-default" disabled="disabled">
<span class="glyphicon glyphicon-remove"></span>
<?php echo lang('delete'); ?>
2015-10-05 01:31:06 +03:00
</button>
<?php } ?>
</div>
<div id="save-cancel-group" class="btn-group" style="display:none;">
<button id="save-customer" class="btn btn-primary">
<span class="glyphicon glyphicon-ok"></span>
<?php echo lang('save'); ?>
2015-10-05 01:31:06 +03:00
</button>
<button id="cancel-customer" class="btn btn-default">
<i class="glyphicon glyphicon-ban-circle"></i>
<?php echo lang('cancel'); ?>
2015-10-05 01:31:06 +03:00
</button>
</div>
</div>
<input id="customer-id" type="hidden" />
<div class="row">
<div class="col-md-6" style="margin-left: 0;">
<h3><?php echo lang('details'); ?></h3>
<div id="form-message" class="alert" style="display:none;"></div>
<div class="form-group">
<label for="first-name"><?php echo lang('first_name'); ?> *</label>
<input type="text" id="first-name" class="form-control required" />
</div>
<div class="form-group">
<label for="last-name"><?php echo lang('last_name'); ?> *</label>
<input type="text" id="last-name" class="form-control required" />
</div>
<div class="form-group">
<label for="email"><?php echo lang('email'); ?> *</label>
<input type="text" id="email" class="form-control required" />
</div>
<div class="form-group">
<label for="phone-number"><?php echo lang('phone_number'); ?> *</label>
<input type="text" id="phone-number" class="form-control required" />
</div>
<div class="form-group">
<label for="address"><?php echo lang('address'); ?></label>
<input type="text" id="address" class="form-control" />
</div>
<div class="form-group">
<label for="city"><?php echo lang('city'); ?></label>
<input type="text" id="city" class="form-control" />
</div>
<div class="form-group">
<label for="zip-code"><?php echo lang('zip_code'); ?></label>
<input type="text" id="zip-code" class="form-control" />
</div>
<div class="form-group">
<label for="notes"><?php echo lang('notes'); ?></label>
<textarea id="notes" rows="4" class="form-control"></textarea>
</div>
<center><em id="form-message" class="text-error">
<?php echo lang('fields_are_required'); ?></em></center>
2015-10-05 01:31:06 +03:00
</div>
<div class="col-md-5">
<h3><?php echo lang('appointments'); ?></h3>
<div id="customer-appointments"></div>
<div id="appointment-details"></div>
2015-10-05 01:31:06 +03:00
</div>
</div>
</div>
</div>
</div>