roundabout,
created on Wednesday, 20 March 2024, 16:57:51 (1710953871),
received on Wednesday, 31 July 2024, 06:54:42 (1722408882)
Author identity: vlad <vlad.muntoiu@gmail.com>
6cb70717f4039e9de7063cb6f76ea5720bf9314c
templates/file-view.html
@@ -56,11 +56,11 @@
{% elif mode == "audio" %}
<audio controls src="{{ file }}" style="width: 100%;">
{% trans %}Your browser does not support HTML5 multimedia.{% endtrans %}
<a href="{{ file }">{% trans %}Download file{% endtrans %}</a>
<a href="{{ file }}">{% trans %}Download file{% endtrans %}</a>
</audio>
{% elif mode == "video" %}
<video controls src="{{ file }}" style="width: 100%;">
{% trans %}Your browser does not support HTML5 multimedia.{% endtrans %}
<a href="{{ file }">{% trans %}Download file{% endtrans %}</a>
<a href="{{ file }}">{% trans %}Download file{% endtrans %}</a>
</video>
{% endif %}
templates/task-monitor.html
@@ -39,10 +39,10 @@
</p>
{% if result.get()[3] != result.get()[5] %}
<pre>
<span class="decorative-dollar">{% trans %}git remote add UPSTREAM {{ result.get()[3] }}{% endtrans %}</span>
<span class="decorative-dollar">{% trans %}git remote update{% endtrans %}</span>
<span class="decorative-dollar">{% trans %}git checkout {{ result.get()[6] }}{% endtrans %}</span>
<span class="decorative-dollar">{% trans %}git merge --allow-unrelated-histories UPSTREAM/{{ result.get()[4] }}{% endtrans %}</span></pre>
<span class="decorative-dollar">git remote add UPSTREAM {{ result.get()[3] }}</span>
<span class="decorative-dollar">git remote update</span>
<span class="decorative-dollar">git checkout {{ result.get()[6] }}</span>
<span class="decorative-dollar">git merge --allow-unrelated-histories UPSTREAM/{{ result.get()[4] }}</span></pre>
<p>
{% trans %}Then fix your conflicts, merge, and finally, run:{% endtrans %}
</p>
@@ -53,8 +53,8 @@
</p>
{% else %}
<pre>
<span class="decorative-dollar">{% trans %}git checkout {{ result.get()[6] }}{% endtrans %}</span>
<span class="decorative-dollar">{% trans %}git merge {{ result.get()[4] }}{% endtrans %}</span></pre>
<span class="decorative-dollar">git checkout {{ result.get()[6] }}</span>
<span class="decorative-dollar">git merge {{ result.get()[4] }}</span></pre>
<p>
{% trans %}Resolve your conflicts and merge, then push.{% endtrans %}
</p>