wavefunk-ui 0.1.5

Askama and htmx UI component base for Wave Funk Rust applications.
Documentation
1
2
3
4
5
6
7
8
9
<div class="wf-credential-list">
  {%- for item in items -%}
  <div class="wf-credential-row">
    <span class="wf-credential-label">{{ item.label }}</span>
    <span class="wf-credential-value">{{ item.value }}</span>
    <span class="{{ item.kind_class() }}">{{ item.status_label }}</span>
  </div>
  {%- endfor -%}
</div>