Child: [c07875] (diff)

Download this file

merge_request.html    23 lines (17 with data), 541 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends 'repo/repo_master.html' %}
{% block title %}
{% if c.app.repo %}
Repository: {{c.app.repo.name}}
{% else %}
Repository
{% endif %}
{% endblock %}
{% block header %}{{c.app.config.options.mount_label}}
Merge Request #{{req.request_number}}: {{req.summary}}
from <a href="{{req.downstream_url}}">{{req.downstream_url}}</a>
by <a href="{{req.creator_url}}">{{req.creator_name}}</a>
{% endblock %}
{% block content %}
{{ clone_info(c.app.repo) }}
<div>{{g.markdown.convert(req.description)}}</div>
{% endblock %}