g_sto/themes/gokbakja/pages/production/excruiters.htm

29 lines
799 B
HTML
Raw Normal View History

2023-10-02 22:15:33 +00:00
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 %} &nbsp; {% endif %}</p>
</div>
</a>
</div>
{% endfor %}
</div>
2023-10-04 20:51:27 +00:00
</div>