engelsystem/resources/views/pages/questions/edit.twig

80 lines
3.0 KiB
Twig
Raw Normal View History

2020-12-18 18:27:10 +01:00
{% extends 'layouts/app.twig' %}
{% import 'macros/base.twig' as m %}
{% import 'macros/form.twig' as f %}
{% block title %}{{ question and question.id ? __('question.edit') : __('question.add') }}{% endblock %}
{% block content %}
<div class="container">
<h1>{{ block('title') }}</h1>
{% include 'layouts/parts/messages.twig' %}
{% if question and question.id %}
<div class="row">
<div class="col-md-6">
<p>
{{ m.icon('clock') }} {{ question.updated_at.format(__('Y-m-d H:i')) }}
2020-12-18 18:27:10 +01:00
{% if question.updated_at != question.created_at %}
&emsp;{{ __('form.updated') }}
<br>
{{ m.icon('clock') }} {{ question.created_at.format(__('Y-m-d H:i')) }}
2020-12-18 18:27:10 +01:00
{% endif %}
</p>
</div>
</div>
{% endif %}
<form action="" enctype="multipart/form-data" method="post">
{{ csrf() }}
<div class="row">
<div class="col-md-12">
{{ f.textarea('text', __('question.question'), {'required': true, 'rows': 10, 'value': question ? question.text : ''}) }}
</div>
<div class="col-md-12">
{% if is_admin|default(false) %}
{{ f.textarea('answer', __('question.answer'), {'required': true, 'rows': 10, 'value': question ? question.answer : ''}) }}
{% endif %}
{{ f.submit() }}
{% if is_admin|default(false) %}
2021-07-24 12:38:23 +02:00
{{ f.submit(m.icon('eye'), {'name': 'preview', 'btn_type': 'info', 'title': __('form.preview')}) }}
2020-12-18 18:27:10 +01:00
{% if question and question.id %}
{{ f.submit(m.icon('trash'), {'name': 'delete', 'btn_type': 'danger', 'title': __('form.delete')}) }}
2020-12-18 18:27:10 +01:00
{% endif %}
{% endif %}
</div>
</div>
{% if question %}
2021-07-24 12:38:23 +02:00
<div class="row mt-3">
2020-12-18 18:27:10 +01:00
<div class="col-md-12">
<h2>{{ __('form.preview') }}</h2>
2021-07-24 12:38:23 +02:00
<div class="card {% if theme.type =='light' %}bg-light{% else %}bg-secondary{% endif %} mb-4">
2021-08-05 01:00:12 +02:00
<div class="card-body bg-body">
2020-12-18 18:27:10 +01:00
{{ question.text|nl2br }}
</div>
</div>
</div>
{% if question.answer %}
2021-07-24 12:38:23 +02:00
<div class="col-md-11 offset-md-1">
<div class="card bg-info">
2021-08-05 01:00:12 +02:00
<div class="card-body bg-body">
2020-12-18 18:27:10 +01:00
{{ question.answer|markdown }}
</div>
</div>
</div>
{% endif %}
</div>
{% endif %}
</form>
</div>
{% endblock %}