Add referral source content

This commit is contained in:
2024-12-05 01:05:35 -05:00
parent a38e63add9
commit e25eff2d49
7 changed files with 509 additions and 0 deletions

View File

@ -0,0 +1,66 @@
{% extends 'base.html.twig' %}
{% block title %}Add Referral Source
{% endblock %}
{% block body %}
{{ block('nav', 'internal/libs/nav.html.twig') }}
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg ">
{{ block('topnav', 'internal/libs/top-nav.html.twig') }}
<section>
<div class='page-header min-vh-100'>
<div class='container'>
<div class="row">
<div class="col-6 d-lg-flex d-none h-100 my-auto pe-0 position-absolute top-0 start-0 text-center justify-content-center flex-column">
<div class="position-relative bg-gradient-primary h-100 m-3 px-7 border-radius-lg d-flex flex-column justify-content-center" style="background-image: url('/assets/img/illustrations/illustration-signup.jpg'); background-size: cover;"></div>
</div>
<div class="col-xl-4 col-lg-5 col-md-7 d-flex flex-column ms-auto me-auto ms-lg-auto me-lg-5">
<div class="card card-plain">
<div class="card-header">
<h4 class="font-weight-bolder">Add Referral Source</h4>
<p class="mb-0">Add a source of receiving referrals</p>
</div>
<div class="card-body">
{{ form_errors(form) }}
{{ form_start(form) }}
<div class='input-group input-group-outline mb-3'>
<label for='ref_src_name' class='form-label'>Name</label>
<input type='text' name='{{ field_name(form.name) }}' id='ref_src_name' placeholder='' class='form-control' required='required'/>
</div>
<div class='input-group input-group-outline mb-3'>
<label for='ref_src_agency' class='form-label'>Agency</label>
<input type='text' name='{{ field_name(form.agency) }}' id='ref_src_agency' placeholder='' class='form-control' required='required'/>
</div>
<div class='input-group input-group-outline mb-3'>
<label for='ref_src_email' class='form-label'>Email</label>
<input type='email' name='{{ field_name(form.email) }}' id='ref_src_email' placeholder='' class='form-control' required='required'/>
</div>
<div class='input-group input-group-outline mb-3'>
<label for='ref_src_phone' class='form-label'>Phone</label>
<input type='phone' name='{{ field_name(form.phone) }}' id='ref_src_phone' placeholder='' class='form-control'/>
</div>
<div class='input-group input-group-outline mb-3'>
<label for='ref_src_county' class='form-label'>County</label>
<input type='text' name='{{ field_name(form.county) }}' id='ref_src_county' placeholder='' class='form-control'/>
</div>
<div class='text-center'>
<button type='submit' class='btn btn-lg bg-gradient-dark btn-lg w-100 mt-4 mb-0'>Add Source</button>
</div>
{{ form_end(form) }}
</div>
</div>
</div>
</div>
</div>
</section>
</main>
{% endblock %}

View File

@ -0,0 +1,66 @@
{% extends 'base.html.twig' %}
{% block title %}Edit Referral Source
{% endblock %}
{% block body %}
{{ block('nav', 'internal/libs/nav.html.twig') }}
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg ">
{{ block('topnav', 'internal/libs/top-nav.html.twig') }}
<section>
<div class='page-header min-vh-100'>
<div class='container'>
<div class="row">
<div class="col-6 d-lg-flex d-none h-100 my-auto pe-0 position-absolute top-0 start-0 text-center justify-content-center flex-column">
<div class="position-relative bg-gradient-primary h-100 m-3 px-7 border-radius-lg d-flex flex-column justify-content-center" style="background-image: url('/assets/img/illustrations/illustration-signup.jpg'); background-size: cover;"></div>
</div>
<div class="col-xl-4 col-lg-5 col-md-7 d-flex flex-column ms-auto me-auto ms-lg-auto me-lg-5">
<div class="card card-plain">
<div class="card-header">
<h4 class="font-weight-bolder">Add Referral Source</h4>
<p class="mb-0">Add a source of receiving referrals</p>
</div>
<div class="card-body">
{{ form_errors(form) }}
{{ form_start(form) }}
<div class='input-group input-group-outline mb-3 is-filled'>
<label for='ref_src_name' class='form-label'>Name</label>
<input type='text' name='{{ field_name(form.name) }}' value='{{ field_value(form.name) }}' id='ref_src_name' class='form-control' required='required'/>
</div>
<div class='input-group input-group-outline mb-3 is-filled'>
<label for='ref_src_agency' class='form-label'>Agency</label>
<input type='text' name='{{ field_name(form.agency) }}' value='{{ field_value(form.agency) }}' id='ref_src_agency' class='form-control' required='required'/>
</div>
<div class='input-group input-group-outline mb-3 is-filled'>
<label for='ref_src_email' class='form-label'>Email</label>
<input type='email' name='{{ field_name(form.email) }}' value='{{ field_value(form.email) }}' id='ref_src_email' class='form-control' required='required'/>
</div>
<div class='input-group input-group-outline mb-3 {% if field_value(form.phone) %}is-filled{% endif %}'>
<label for='ref_src_phone' class='form-label'>Phone</label>
<input type='phone' name='{{ field_name(form.phone) }}' value='{{ field_value(form.phone) }}' id='ref_src_phone' class='form-control'/>
</div>
<div class='input-group input-group-outline mb-3 is-filled'>
<label for='ref_src_county' class='form-label'>County</label>
<input type='text' name='{{ field_name(form.county) }}' value='{{ field_value(form.county) }}' id='ref_src_county' class='form-control'/>
</div>
<div class='text-center'>
<button type='submit' class='btn btn-lg bg-gradient-dark btn-lg w-100 mt-4 mb-0'>Save Source</button>
</div>
{{ form_end(form) }}
</div>
</div>
</div>
</div>
</div>
</section>
</main>
{% endblock %}

View File

@ -0,0 +1,78 @@
{% extends 'base.html.twig' %}
{% block title %}Referral Source List
{% endblock %}
{% block body %}
{{ block('nav', 'internal/libs/nav.html.twig') }}
<main class="main-content position-relative max-height-vh-100 h-100 border-radius-lg ">
{{ block('topnav', 'internal/libs/top-nav.html.twig') }}
<div class="container-fluid py-2">
<div class="row">
<div class="col-12">
<div class="card my-4">
<div class="card-header p-0 position-relative mt-n4 mx-3 z-index-2">
<div class="d-flex justify-content-between bg-gradient-dark shadow-dark border-radius-lg pt-4 pb-3 ps-3 p-2">
<div>
<h6 class="text-white text-capitalize ps-3">Referral Source List</h6>
</div>
<div>
<button type="button" class="btn btn-block btn-light mb-3" onclick="window.open('/index.php/add-source', '_self')">Add Source</button>
</div>
</div>
</div>
<div class="card-body px-0 pb-2">
<div class="table-responsive p-0">
<table class="table align-items-center mb-0">
<thead>
<tr>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Name</th>
<th class="text-uppercase text-secondary text-xxs font-weight-bolder opacity-7 ps-2">Agency</th>
<th class='text-center text-uppercase text-secondary text-xxs font-weight-bolder opacity-7'>County</th>
<th class="text-center text-uppercase text-secondary text-xxs font-weight-bolder opacity-7">Phone</th>
<th class="text-secondary opacity-7"></th>
</tr>
</thead>
<tbody>
{% for src in sources %}
<tr>
<td>
<div class='d-flex px-2 py-1'>
<div>
<img src='' class='avatar avatar-sm me-3 border-radius-large' alt='{{ src.name }}'>
</div>
<div class='d-flex flex-column justify-content-center'>
<h6 class='mb-0 text-small'>{{ src.name }}</h6>
<p class='text-xs text-secondary mb-0'>
<a href='mailto:{{ src.email }}'>{{ src.email }}</a>
</p>
</div>
</div>
</td>
<td>
<p class='text-xs font-weight-bold mb-0'>{{ src.agency }}</p>
</td>
<td>
<p class='text-xs font-weight-bold mb-0'>{{ src.county }}</p>
</td>
<td class='align-middle text-center text-xs'>
{{ src.phone }}
</td>
<td class='align-middle'>
<a href='/index.php/edit-source/{{ src.id }}' class='text-secondary font-weight-bold text-xs' data-toggle='tooltip' data-original-title='Edit Source'>Edit</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
{% endblock %}