57 lines
1.9 KiB
HTML
57 lines
1.9 KiB
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
|
|
{% block title %}CMC Enquiries{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="section">
|
|
<h1 class="title">Master Enquiry Register</h1>
|
|
|
|
<nav class="pagination is-left" role="navigation" aria-label="pagination">
|
|
<ul class="pagination-list">
|
|
{% if page_obj.has_previous %}
|
|
<li><a href="?page={{ page_obj.previous_page_number }}" class="pagination-previous">Previous</a></li>
|
|
{% endif %}
|
|
{% if page_obj.has_next %}
|
|
<li><a href="?page={{ page_obj.next_page_number }}" class="pagination-next">Next</a></li>
|
|
{% endif %}
|
|
<li>Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<table cellpadding="0" cellspacing="0" class="table is-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>User</th>
|
|
<th>Date</th>
|
|
<th>Principle</th>
|
|
<th>Enquiry Number</th>
|
|
<th>Customer</th>
|
|
<th>Contact</th>
|
|
<th>Email</th>
|
|
<th>Phone</th>
|
|
<th>Status</th>
|
|
<th>Comments</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for enquiry in page_obj %}
|
|
<tr class="">
|
|
<td>{{ enquiry.user }}</td>
|
|
<td>{{ enquiry.created|date:"j M Y" }}</td>
|
|
<td>{{ enquiry.principle }}</td>
|
|
<td>{{ enquiry.title }}</td>
|
|
<td>{{ enquiry.customer }}</td>
|
|
<td>{{ enquiry.contact}}</td>
|
|
<td><a href="mailto:{{ enquiry.contact.email }}?subject={{ enquiry.title }}&bcc=carpis@cmctechnologies.com.au">{{ enquiry.contact.email }}</a></td>
|
|
<td>{{ enquiry.contact.phone }}</td>
|
|
<td>{{ enquiry.status }}</td>
|
|
<td>{{ enquiry.comments | truncatechars:60 }}</td>
|
|
<td></td> {# Add action links here e.g., <a href="{% url 'enquiry_detail' enquiry.id %}">View</a> #}
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
{% endblock %} |