2020-12-06 00:16:15 +01:00
|
|
|
{% extends 'layouts/app.twig' %}
|
|
|
|
{% import 'macros/base.twig' as m %}
|
2021-12-10 20:48:17 +01:00
|
|
|
{% import 'macros/form.twig' as f %}
|
2020-12-06 00:16:15 +01:00
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
{{ __('faq.faq') }}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
|
|
|
<h1>
|
|
|
|
{{ block('title') }}
|
|
|
|
|
|
|
|
{%- if has_permission_to('faq.edit') -%}
|
2021-07-22 21:22:21 +02:00
|
|
|
{{ m.button(m.icon('plus-lg'), url('admin/faq'), 'secondary') }}
|
2020-12-06 00:16:15 +01:00
|
|
|
{%- endif %}
|
|
|
|
</h1>
|
|
|
|
|
|
|
|
{% include 'layouts/parts/messages.twig' %}
|
|
|
|
|
|
|
|
<div class="row">
|
2021-12-10 20:48:17 +01:00
|
|
|
{% block questions_text %}
|
|
|
|
{% if has_permission_to('question.add') %}
|
|
|
|
<p>{{ __('faq.questions_link', [url('/questions')]) | raw }}</p>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2020-12-06 00:16:15 +01:00
|
|
|
{% block text %}
|
|
|
|
{% if text|default(null) %}
|
|
|
|
<div class="col-md-12">
|
|
|
|
{{ text|markdown }}
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block row %}
|
|
|
|
{% for item in items %}
|
2020-12-27 17:55:41 +01:00
|
|
|
<div class="col-md-12 faq">
|
|
|
|
<span id="faq-{{ item.id }}" class="ref-id"></span>
|
2021-08-05 01:00:12 +02:00
|
|
|
<div class="card {% if theme.type =='light' %}bg-light{% else %}bg-dark{% endif %} mb-4">
|
2021-07-25 21:41:57 +02:00
|
|
|
<h4 class="card-header">
|
2021-07-24 12:38:23 +02:00
|
|
|
{{ item.question }}
|
|
|
|
<small class="text-muted">
|
|
|
|
<a class="ref-link" href="#faq-{{ item.id }}">{{ m.icon('link') }}</a>
|
|
|
|
</small>
|
2021-07-25 21:41:57 +02:00
|
|
|
</h4>
|
2020-12-06 00:16:15 +01:00
|
|
|
|
2021-08-05 01:00:12 +02:00
|
|
|
<div class="card-body bg-body">
|
2020-12-06 00:16:15 +01:00
|
|
|
{{ item.text|markdown }}
|
|
|
|
</div>
|
|
|
|
|
2021-08-05 01:00:12 +02:00
|
|
|
<div class="card-footer {% if theme.type =='light' %}bg-light{% else %}bg-dark{% endif %} d-flex align-items-center">
|
2021-07-24 12:38:23 +02:00
|
|
|
<div class="me-3">
|
|
|
|
{{ m.icon('clock') }} {{ item.updated_at.format(__('Y-m-d H:i')) }}
|
|
|
|
</div>
|
2020-12-06 00:16:15 +01:00
|
|
|
|
|
|
|
{% if has_permission_to('faq.edit') %}
|
2021-07-24 12:38:23 +02:00
|
|
|
<span class="ms-auto">
|
2022-12-02 23:03:23 +01:00
|
|
|
{{ m.button(m.icon('pencil'), url('admin/faq/' ~ item.id), 'secondary', 'sm') }}
|
2020-12-06 00:16:15 +01:00
|
|
|
</span>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|
2021-12-10 20:48:17 +01:00
|
|
|
|
|
|
|
{% block ask_question %}
|
|
|
|
{% if has_permission_to('question.add') %}
|
|
|
|
<form action="{{ url('/questions/new') }}" enctype="multipart/form-data" method="post">
|
|
|
|
{{ csrf() }}
|
|
|
|
<div class="col-md-12">
|
|
|
|
<h4>{{ __('question.add') }}</h4>
|
2023-04-19 22:34:08 +02:00
|
|
|
{{ f.textarea('text', __('question.question'), {
|
|
|
|
'required': true,
|
|
|
|
'rows': 5,
|
|
|
|
}) }}
|
2021-12-10 20:48:17 +01:00
|
|
|
{{ f.submit() }}
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
2020-12-06 00:16:15 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|