mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-28 19:03:21 +03:00
Add slots to key positions in the app mark up
This commit is contained in:
parent
b018542c77
commit
c1be588efd
25 changed files with 143 additions and 6 deletions
|
@ -108,6 +108,8 @@
|
|||
</select>
|
||||
</div>
|
||||
|
||||
<?php slot('after_select_appointment_service'); ?>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="select-provider" class="form-label">
|
||||
<?= lang('provider') ?>
|
||||
|
@ -116,6 +118,8 @@
|
|||
<select id="select-provider" class="required form-control"></select>
|
||||
</div>
|
||||
|
||||
<?php slot('after_select_appointment_provider'); ?>
|
||||
|
||||
<div class="mb-3">
|
||||
<?php component('color_selection', ['attributes' => 'id="appointment-color"']); ?>
|
||||
</div>
|
||||
|
@ -183,10 +187,14 @@
|
|||
<label for="appointment-notes" class="form-label"><?= lang('notes') ?></label>
|
||||
<textarea id="appointment-notes" class="form-control" rows="3"></textarea>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_appointment_fields'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<?php slot('after_appointment_details'); ?>
|
||||
|
||||
<br>
|
||||
|
||||
<fieldset>
|
||||
|
@ -335,6 +343,8 @@
|
|||
<textarea id="customer-notes" rows="2"
|
||||
class="<?= $require_notes ? 'required' : '' ?> form-control"></textarea>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_customer_fields'); ?>
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
|
@ -342,10 +352,14 @@
|
|||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<?php slot('after_customer_details'); ?>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer">
|
||||
<?php slot('before_appointment_actions'); ?>
|
||||
|
||||
<button class="btn btn-secondary" data-bs-dismiss="modal">
|
||||
<?= lang('cancel') ?>
|
||||
</button>
|
||||
|
|
|
@ -83,6 +83,8 @@
|
|||
</div>
|
||||
</li>
|
||||
|
||||
<?php slot('before_user_nav_item'); ?>
|
||||
|
||||
<?php $hidden = can('view', PRIV_SYSTEM_SETTINGS) || can('view', PRIV_USER_SETTINGS) ? '' : 'd-none'; ?>
|
||||
<?php $active = $active_menu == PRIV_SYSTEM_SETTINGS ? 'active' : ''; ?>
|
||||
<li class="nav-item dropdown <?= $active . $hidden ?>">
|
||||
|
@ -97,6 +99,9 @@
|
|||
<?= lang('settings') ?>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php slot('after_settings_dropdown_item'); ?>
|
||||
|
||||
<a class="dropdown-item" href="<?= site_url('account') ?>">
|
||||
<?= lang('account') ?>
|
||||
</a>
|
||||
|
|
|
@ -16,10 +16,14 @@
|
|||
<div id="appointment-details" class="col-12 col-md-6 text-center text-md-start mb-2 mb-md-0">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
||||
<div id="customer-details" class="col-12 col-md-6 text-center text-md-end">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<?php slot('after_details'); ?>
|
||||
|
||||
<?php if (setting('require_captcha')): ?>
|
||||
<div class="row frame-content m-auto">
|
||||
|
@ -36,6 +40,8 @@
|
|||
</div>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php slot('after_captcha'); ?>
|
||||
</div>
|
||||
|
||||
<div class="d-flex fs-6 justify-content-around">
|
||||
|
@ -62,6 +68,8 @@
|
|||
</label>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php slot('after_select_policies'); ?>
|
||||
</div>
|
||||
|
||||
<div class="command-buttons">
|
||||
|
|
|
@ -79,6 +79,8 @@
|
|||
class="<?= $require_phone_number ? 'required' : '' ?> form-control"/>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php slot('info_first_column'); ?>
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6 field-col mx-auto">
|
||||
|
@ -130,10 +132,15 @@
|
|||
class="<?= $require_notes ? 'required' : '' ?> form-control" rows="1"></textarea>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php slot('info_second_column'); ?>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="mb-3">
|
||||
<?php component('custom_fields'); ?>
|
||||
|
||||
<?php slot('after_custom_fields'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -14,6 +14,8 @@
|
|||
<div class="row frame-content">
|
||||
<div class="col-12 col-md-6">
|
||||
<div id="select-date"></div>
|
||||
|
||||
<?php slot('after_select_date'); ?>
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6">
|
||||
|
@ -28,7 +30,12 @@
|
|||
]); ?>
|
||||
</div>
|
||||
|
||||
<?php slot('after_select_timezone'); ?>
|
||||
|
||||
|
||||
<div id="available-hours"></div>
|
||||
|
||||
<?php slot('after_available_hours'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -74,6 +74,8 @@
|
|||
?>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<?php slot('after_select_service'); ?>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="select-provider">
|
||||
|
@ -83,9 +85,14 @@
|
|||
<select id="select-provider" class="form-control"></select>
|
||||
</div>
|
||||
|
||||
<?php slot('after_select_provider'); ?>
|
||||
|
||||
<div id="service-description" class="small">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
||||
<?php slot('after_service_description'); ?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -28,6 +28,8 @@
|
|||
<select id="unavailability-provider" class="form-control"></select>
|
||||
</div>
|
||||
|
||||
<?php slot('after_select_appointment_provider'); ?>
|
||||
|
||||
<div class="mb-3">
|
||||
<label for="unavailability-start" class="form-label">
|
||||
<?= lang('start') ?>
|
||||
|
@ -55,16 +57,16 @@
|
|||
<small>
|
||||
<?= lang('provider') ?>:
|
||||
<span class="provider-timezone">
|
||||
-
|
||||
</span>
|
||||
-
|
||||
</span>
|
||||
</small>
|
||||
</div>
|
||||
<div class="w-50 p-1 text-center">
|
||||
<small>
|
||||
<?= lang('current_user') ?>:
|
||||
<span>
|
||||
<?= $timezones[session('timezone', 'UTC')] ?>
|
||||
</span>
|
||||
<?= $timezones[session('timezone', 'UTC')] ?>
|
||||
</span>
|
||||
</small>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -76,10 +78,14 @@
|
|||
</label>
|
||||
<textarea id="unavailability-notes" rows="3" class="form-control"></textarea>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_unavailability_fields'); ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<?php slot('after_unavailability_actions'); ?>
|
||||
|
||||
<button class="btn btn-secondary" data-bs-dismiss="modal">
|
||||
<?= lang('cancel') ?>
|
||||
</button>
|
||||
|
|
|
@ -59,8 +59,12 @@
|
|||
</thead>
|
||||
<tbody><!-- Dynamic Content --></tbody>
|
||||
</table>
|
||||
|
||||
<?php slot('after_primary_working_plan_exception_fields'); ?>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<?php slot('before_working_plan_exception_actions'); ?>
|
||||
|
||||
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">
|
||||
<?= lang('cancel') ?>
|
||||
</button>
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
<?= lang('admins') ?>
|
||||
</h4>
|
||||
|
||||
<?php slot('after_page_title'); ?>
|
||||
|
||||
<div class="results">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
@ -51,6 +53,8 @@
|
|||
<?= lang('cancel') ?>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<?php slot('after_page_actions'); ?>
|
||||
</div>
|
||||
|
||||
<h4 class="text-black-50 mb-3 fw-light">
|
||||
|
@ -138,6 +142,8 @@
|
|||
</label>
|
||||
<textarea id="notes" class="form-control" rows="3" disabled></textarea>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</div>
|
||||
<div class="settings col-12 col-md-6">
|
||||
<div class="mb-3">
|
||||
|
@ -216,6 +222,8 @@
|
|||
</label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php slot('after_secondary_fields'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -45,6 +45,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_appointment_fields'); ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
<?= lang('blocked_periods') ?>
|
||||
</h4>
|
||||
|
||||
<?php slot('after_page_title'); ?>
|
||||
|
||||
<div class="results">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
@ -57,6 +59,8 @@
|
|||
<?= lang('cancel') ?>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<?php slot('after_page_actions'); ?>
|
||||
</div>
|
||||
|
||||
<h4 class="text-black-50 mb-3 fw-light">
|
||||
|
@ -97,6 +101,8 @@
|
|||
</label>
|
||||
<textarea id="notes" rows="4" class="form-control" disabled></textarea>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -420,6 +420,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -135,6 +135,8 @@
|
|||
<?php component('appointment_status_options', [
|
||||
'attributes' => 'id="appointment-status-options"',
|
||||
]); ?>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -76,6 +76,8 @@
|
|||
<i class="fas fa-calendar-alt"></i>
|
||||
</a>
|
||||
<?php endif; ?>
|
||||
|
||||
<?php slot('after_calendar_actions'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
<?= lang('customers') ?>
|
||||
</h4>
|
||||
|
||||
<?php slot('after_page_title'); ?>
|
||||
|
||||
<div class="results">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
@ -62,6 +64,8 @@
|
|||
<?= lang('cancel') ?>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<?php slot('after_page_actions'); ?>
|
||||
</div>
|
||||
|
||||
<input id="customer-id" type="hidden">
|
||||
|
@ -191,6 +195,8 @@
|
|||
</label>
|
||||
<textarea id="notes" rows="4" class="form-control" disabled></textarea>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md-6">
|
||||
|
@ -199,6 +205,8 @@
|
|||
</h4>
|
||||
|
||||
<div id="customer-appointments" class="card bg-white border"></div>
|
||||
|
||||
<?php slot('after_secondary_fields'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -193,6 +193,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -46,6 +46,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_appointment_fields'); ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -110,6 +110,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php slot('after_integration_cards'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -78,11 +78,12 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -46,6 +46,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_appointment_fields'); ?>
|
||||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
<?= lang('providers') ?>
|
||||
</h4>
|
||||
|
||||
<?php slot('after_page_title'); ?>
|
||||
|
||||
<div class="results">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
@ -51,6 +53,8 @@
|
|||
<?= lang('cancel') ?>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<?php slot('after_page_actions'); ?>
|
||||
</div>
|
||||
|
||||
<ul class="nav nav-pills switch-view">
|
||||
|
@ -159,6 +163,8 @@
|
|||
</label>
|
||||
<textarea id="notes" class="form-control" rows="3" disabled></textarea>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</div>
|
||||
<div class="settings col-12 col-md-6">
|
||||
<div class="mb-3">
|
||||
|
@ -199,7 +205,6 @@
|
|||
</select>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="mb-3">
|
||||
<label class="form-label" for="language">
|
||||
<?= lang('language') ?>
|
||||
|
@ -262,6 +267,8 @@
|
|||
<div id="provider-services" class="card card-body bg-white border">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
||||
<?php slot('after_secondary_fields'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -286,6 +293,8 @@
|
|||
<tbody><!-- Dynamic Content --></tbody>
|
||||
</table>
|
||||
|
||||
<?php slot('after_working_plan'); ?>
|
||||
|
||||
<br>
|
||||
|
||||
<h4 class="text-black-50 mb-3 fw-light">
|
||||
|
@ -317,6 +326,8 @@
|
|||
<tbody><!-- Dynamic Content --></tbody>
|
||||
</table>
|
||||
|
||||
<?php slot('after_breaks'); ?>
|
||||
|
||||
<br>
|
||||
|
||||
<h4 class="text-black-50 mb-3 fw-light">
|
||||
|
@ -349,6 +360,8 @@
|
|||
</table>
|
||||
|
||||
<?php component('working_plan_exceptions_modal'); ?>
|
||||
|
||||
<?php slot('after_working_plan_exceptions'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
<?= lang('secretaries') ?>
|
||||
</h4>
|
||||
|
||||
<?php slot('after_page_title'); ?>
|
||||
|
||||
<div class="results">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
@ -51,6 +53,8 @@
|
|||
<?= lang('cancel') ?>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<?php slot('after_page_actions'); ?>
|
||||
</div>
|
||||
|
||||
<h4 class="text-black-50 mb-3 fw-light">
|
||||
|
@ -137,6 +141,8 @@
|
|||
</label>
|
||||
<textarea id="notes" class="form-control" rows="3" disabled></textarea>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</div>
|
||||
<div class="settings col-12 col-md-6">
|
||||
<div class="mb-3">
|
||||
|
@ -225,6 +231,8 @@
|
|||
<div id="secretary-providers" class="card card-body bg-white border">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
||||
<?php slot('after_secondary_fields'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -21,6 +21,8 @@
|
|||
<?= lang('service_categories') ?>
|
||||
</h4>
|
||||
|
||||
<?php slot('after_page_title'); ?>
|
||||
|
||||
<div class="results">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
@ -52,6 +54,8 @@
|
|||
<?= lang('cancel') ?>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<?php slot('after_page_actions'); ?>
|
||||
</div>
|
||||
|
||||
<h4 class="text-black-50 mb-3 fw-light">
|
||||
|
@ -76,6 +80,8 @@
|
|||
</label>
|
||||
<textarea id="description" rows="4" class="form-control" disabled></textarea>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -19,6 +19,9 @@
|
|||
<h4 class="text-black-50 mb-3 fw-light">
|
||||
<?= lang('services') ?>
|
||||
</h4>
|
||||
|
||||
<?php slot('after_page_title'); ?>
|
||||
|
||||
<div class="results">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
@ -50,6 +53,8 @@
|
|||
<?= lang('cancel') ?>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<?php slot('after_page_actions'); ?>
|
||||
</div>
|
||||
|
||||
<h4 class="text-black-50 mb-3 fw-light">
|
||||
|
@ -162,6 +167,8 @@
|
|||
</label>
|
||||
<textarea id="description" rows="4" class="form-control" disabled></textarea>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
<?= lang('webhooks') ?>
|
||||
</h4>
|
||||
|
||||
<?php slot('after_page_title'); ?>
|
||||
|
||||
<div class="results">
|
||||
<!-- JS -->
|
||||
</div>
|
||||
|
@ -56,6 +58,8 @@
|
|||
<?= lang('cancel') ?>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<?php slot('after_page_actions'); ?>
|
||||
</div>
|
||||
|
||||
<h4 class="text-black-50 mb-3 fw-light">
|
||||
|
@ -137,6 +141,8 @@
|
|||
</label>
|
||||
<textarea id="notes" rows="4" class="form-control" disabled></textarea>
|
||||
</div>
|
||||
|
||||
<?php slot('after_primary_fields'); ?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue