HEX
Server: Apache
System: Linux srv4.garantili.com.tr 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: ekspardev (1006)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/ekspardev/public_html/tubisad/rapor/src/pages/_includes/ui/table.html
{% assign roles = 'User,Admin,Owner' | split: ',' %}
{% assign limit = include.limit | default: 5 %}
<div class="table-responsive">
	<table
		class="table table-vcenter{% if include.mobile %} table-mobile-md{% endif %}{% if include.card %} card-table{% endif %}{% if include.stripped %} table-striped{% endif %}{% if include.nowrap %} table-nowrap{% endif %}">
		<thead>
		<tr>
			<th>Name</th>
			<th>Title</th>

			{% unless include.avatars %}
			<th>Email</th>
			{% endunless %}

			<th>Role</th>

			{% if include.nowrap %}
			<th></th>
			{% endif %}

			<th class="w-1"></th>
		</tr>
		</thead>
		<tbody>
		{% for person in site.data.people limit: limit offset: include.offset %}
		<tr>
			{% if include.avatars %}
			<td {% if include.mobile %}data-label="Name" {% endif %}>
				<div class="d-flex py-1 align-items-center">
					{% include ui/avatar.html person-id=person.id class="me-2" %}
					<div class="flex-fill">
						<div class="font-weight-medium">{{ person.full_name }}</div>
						<div class="text-muted"><a href="#" class="text-reset">{{ person.email }}</a></div>
					</div>
				</div>
			</td>
			{% else %}
			<td {% if include.mobile %}data-label="Name" {% endif %}>{{ person.full_name }}</td>
			{% endif %}


			{% if include.avatars %}
			<td {% if include.mobile %}data-label="Title" {% endif %}>
				<div>{{ person.job_title }}</div>
				<div class="text-muted">{{ person.department }}</div>
			</td>
			{% else %}
			<td class="text-muted" {% if include.mobile %}data-label="Title" {% endif %}>
				{{ person.job_title }}, {{ person.department }}
			</td>
			{% endif %}

			{% unless include.avatars %}
			<td class="text-muted" {% if include.mobile %}data-label="Email" {% endif %}><a href="#" class="text-reset">{{
				person.email }}</a></td>
			{% endunless %}


			<td class="text-muted" {% if include.mobile %}data-label="Role" {% endif %}>
				{% assign role-id = forloop.index | random_number: 0, 2 %}
				{{ roles[role-id] }}
			</td>

			{% if include.nowrap %}
			<td>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Animi, commodi cupiditate debitis deserunt
				expedita hic incidunt iste modi molestiae nesciunt non nostrum perferendis perspiciatis placeat praesentium
				quaerat quo repellendus, voluptates.
			</td>
			{% endif %}

			<td>
				{% if include.buttons %}
				<div class="btn-list flex-nowrap">
					{% include ui/button.html text="Edit" %}
					<div class="dropdown">
						<button class="btn dropdown-toggle align-text-top" data-bs-toggle="dropdown">
							Actions
						</button>
						{% include ui/dropdown-menu.html right=true %}
					</div>
				</div>
				{% else %}
				<a href="#">Edit</a>
				{% endif %}
			</td>
		</tr>
		{% endfor %}
		</tbody>
	</table>
</div>