view sat_templates/templates/default/merge-request/discover.html @ 342:0d6826a73c0f

(bulma) CSS: fix content overflow in media object: Overflow was sometimes breaking design with media object. This was notably the case when viewing a list item with a long `<pre>` section, e.g. a ticket with a code pasted with long lines). This patch fixes it.
author Goffi <goffi@goffi.org>
date Fri, 01 Oct 2021 17:37:40 +0200
parents e9f0a4215e46
children
line wrap: on
line source

{% extends 'base/base.html' %}
{% import 'components/block.html' as block with context %}
{% import 'components/images.html' as images with context %}
{% import 'components/avatar.html' as avatar with context %}
{% import 'input/form.html' as form with context %}
{% import 'input/field.html' as field with context %}

{% block body %}
{{ icon_defs('merge') }}
<p class="instructions--head">
    {% trans %}
    Please select a merge-requests handler
    {% endtrans %}
</p>
{% if mr_handlers is defined %}
    <div class="disco_tickets">
        {{block.disco_icon_grid(mr_handlers, 'merge')}}
    </div>
{% endif %}

{% call form.form(class="form--single") %}
    {{ field.text("jid", _("handler jid"), required=true)}}
    {{ field.submit(_("Access")) }}
{% endcall %}
{% endblock body %}