You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

165 lines
8.0 KiB
HTML

{% extends "main.html" %}
{%load static%}
{% block content %}
<div class="w-full px-10 mb-4">
<div class="w-full h-full shadow-md rounded-md mt-5 py-5 px-3 bg-white">
<h1 class="text-3xl text-slate-800 text-center font-semibold">
Edit Customer
</h1>
<form method="POST" action="{% url 'editcustomer' customer.customer_id %}">
{% csrf_token %}
<div class="w-full flex flex-col gap-3 justify-center items-center mt-5">
<div class="w-full mt-4">
<label class="text-gray-500 text-xl">First Name:</label>
<input name="first_name" type="text" placeholder="First Name"
value="{{customer.user.first_name}}"
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md mt-2" required>
</div>
<div class="w-full mt-4">
<label class="text-gray-500 text-xl">Last Name:</label>
<input name="last_name" type="text" placeholder="Last Name"
value="{{customer.user.last_name}}"
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md mt-2" required>
</div>
<div class="w-full mt-4">
<label class="text-gray-500 text-xl">Email:</label>
<input name="email" type="email" placeholder="Email"
value="{{customer.user.email}}"
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md mt-2" required>
</div>
<div class="w-full mt-4">
<label class="text-gray-500 text-xl">Mobile Number:</label>
<input name="mobile_number" type="number" placeholder="Mobile Number"
value="{{customer.mobile_number}}"
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md mt-2" required>
</div>
<div class="w-full mt-4">
<label class="text-gray-500 text-xl">Personal Website:</label>
<input name="personal_website" type="url" placeholder="Personal Website"
value="{{customer.personal_website}}"
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md mt-2">
</div>
<div class="w-full mt-4">
<label class="text-gray-500 text-xl">Status:</label>
<select name="status"
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md text-gray-500 mt-2"
required>
<option value="" disabled>Status</option>
<option value="Active"{% if customer_status == 'Active' %} selected {% endif %}>Active</option>
<option value="Suspended"{% if customer_status == 'Suspended' %} selected {% endif %}>Suspended</option>
<option value="Terminated"{% if customer_status == 'Terminated' %} selected {% endif %}>Terminated</option>
</select>
</div>
<div class="w-full mt-4">
<label class="text-gray-500 text-xl">Reference:</label>
<select name="reference"
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md text-gray-500 mt-2"
required>
{% for reference in references %}
<option value="{{ reference.id }}" {% if reference.id == customer_reference.id %} selected {% endif %}>
{{ reference.name }}
</option>
{% endfor %}
</select>
</div>
{% if not customer_business %}
<div class="w-full mt-4">
<label class="text-gray-500 text-xl">Type:</label>
<select id="businessTypeSelect"
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md text-gray-500 mt-2">
<option value="" disabled>Type</option>
<option value="business" {% if customer.business %} selected {% endif %} >Business</option>
<option value="personal" {% if not customer.business %} selected {% endif %}>Personal</option>
</select>
</div>
{% endif %}
{% if customer_business %}
<div class="w-full mt-4">
<label class="text-gray-500 text-xl">Business:</label>
<select name="business"
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md text-gray-500 mt-2"
required>
{% for business in businesses %}
<option value="{{ business.id }}" {% if business.id == customer_business.id %} selected {% endif %}>
{{ business.name }}
</option>
{% endfor %}
</select>
</div>
{% endif %}
<div class="w-[80%] mx-auto border border-gray-300 rounded-md py-5 px-3 bg-white hidden"
id="addBusinessContainer">
<h1 class="text-3xl text-slate-800 text-center font-semibold">
Select Business
</h1>
<div class="w-full mt-2">
<select name="business" id="businessSelect"
class="w-full h-[50px] py-1 px-3 border border-gray-300 outline-none rounded-md text-gray-500">
<option value="" disabled>Business Name</option>
<option value="" selected>Business1</option>
{% for business in businesses %}
<option value="{{business.id}}">{{business.name}}</option>
{% endfor %}
</select>
</div>
</div>
<!-- MAKE THE "ADDBUSINESSCONTAINER" VISIBLE WHEN CHOOSING THE CUSTOMER TYPE AS BUSINESS -->
<script>
const businessTypeSelect = document.getElementById('businessTypeSelect');
const addBusinessContainer = document.getElementById('addBusinessContainer');
businessTypeSelect.addEventListener('change', function () {
if (businessTypeSelect.value === 'business') {
addBusinessContainer.style.display = 'block';
addBusinessContainer.scrollIntoView({ behavior: 'smooth' });
} else {
addBusinessContainer.style.display = 'none';
}
});
</script>
<div class="w-full flex justify-center items-center mt-3">
<button type="submit"
class="w-fit py-1 px-3 bg-blue-500 rounded-md outline-none text-white border border-blue-500 text-xl cursor-pointer hover:bg-white hover:text-blue-500">Save</button>
</div>
</div>
</form>
</div>
</div>
</div>
<!-- POPUP MODAL -->
<div class="w-full h-full bg-black bg-opacity-40 z-20 fixed justify-center items-center hidden" id="popUpModal">
<div class="w-[95%] md:w-fit h-fit bg-white rounded-md p-9 relative">
<button class="absolute top-3 right-5 text-slate-800 text-xl cursor-pointer outline-none border-none"
id="closeModalButton">
<i class="fa fa-close"></i>
</button>
<iframe id="popupModalFrame" frameborder="0"></iframe>
</div>
</div>
<script type="text/javascript" src='{% static "js/pop-modals.js" %}'></script>
</div>
{% endblock content %}