add actions and templates folder

This commit is contained in:
Florian Schmitt 2023-12-21 19:34:13 +03:00
parent 8c772864b3
commit 934de3ad61
10 changed files with 792 additions and 0 deletions

View file

@ -0,0 +1,3 @@
{% extends "@bazar/layouts/field.twig" %}
{% block value %}{{ value|raw }}{% endblock %}

View file

@ -0,0 +1,9 @@
{% extends "@bazar/layouts/field.twig" %}
{% block label %}{{ _t('BAZ_GIVEN_ID') }}{% endblock %}
{% block value %}
{{ value }}
{% if isLoggedUser %}
{% endif %}
{% endblock %}

View file

@ -0,0 +1,15 @@
{% extends "@bazar/layouts/input.twig" %}
{% block input %}
<div class="input-group">
<input
type="text"
value="{{ value }}"
id="{{ field.name }}"
name="{{ field.name }}"
class="form-control yeswiki-input-pagetag"
size="{{ field.maxChars }}"
{% if field.required %}required{% endif %}
/>
</div>
{% endblock %}