Initial Commit
This commit is contained in:
commit
e8529bdbee
25 changed files with 13519 additions and 0 deletions
14
templates/components/fields.html
Normal file
14
templates/components/fields.html
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{% macro field(name, value) %}
|
||||
<div class="row mt-4">
|
||||
<div class="col-md-3">
|
||||
<p class="mb-0 fw-regular">
|
||||
{{ name }}:
|
||||
</p>
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<p class="mb-0">
|
||||
{{ value }}
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endmacro %}
|
||||
Loading…
Reference in a new issue