By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 repo-commit.html

View raw Download
text/plain • 540 B
ASCII text
        
            
1
{% extends "default.html" %}
2
3
{% set active_page = "log" %}
4
5
{% block title %}
6
{% trans basename=basename, username=username, repository=repository %}{{ basename }} in {{ username }}/{{ repository }}{% endtrans %}
7
{% endblock %}
8
{% block content %}
9
<x-vbox>
10
<x-frame style="--width: 896px;" class="flexible-space">
11
{% for line in diff | decode | split("\n") %}
12
{% if line[0] == "+" %}
13
<ins>{{ line[1:] }}</ins>
14
{% endif %}
15
{% endfor %}
16
</x-frame>
17
</x-vbox>
18
{% endblock %}
19