29 lines
799 B
HTML
29 lines
799 B
HTML
title = "excruiters"
|
|
url = "/excruiters"
|
|
layout = "platform_main"
|
|
is_hidden = 0
|
|
==
|
|
<?php
|
|
function onStart(){
|
|
|
|
$this["excruiters"] = Romanah\Gokbakja\Models\Excruiter::all();
|
|
|
|
}
|
|
?>
|
|
==
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
|
|
{% for key, record in excruiters %}
|
|
<div class="col-md-3 col-sm">
|
|
<a href="/production/{{record.id}}" class="card bg-info text-white-50">
|
|
<div class="card-body">
|
|
<h5 class="mb-4 text-white" style="text-transform: uppercase;"><i class="mdi mdi-bullseye-arrow me-3"></i> {{record.name}} </h5>
|
|
<p class="card-text">{% if record.note %}{{record.note}}{% else %} {% endif %}</p>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</div> |