X-Git-Url: https://git.cweiske.de/phorkie.git/blobdiff_plain/64ff825aec91fd0f914d05cf17cd299be83b165c..46b8f9d7a368f9ab35653edd726666ce17bedb39:/data/templates/display.htm diff --git a/data/templates/display.htm b/data/templates/display.htm index afdc75c..da75cd9 100644 --- a/data/templates/display.htm +++ b/data/templates/display.htm @@ -1,19 +1,70 @@ {% extends "base.htm" %} -{% block title %}{{description}}{% endblock %} +{% block title %} + {%if repo.getDescription %} + {{repo.getDescription}} + {%else%} + {{repo.id}} + {%endif%} +{% endblock %} {% block content %}

{{repo.getDescription}}

- +
+
+ edit +
+
+

Paste #{{repo.id}}

+
+
+
+ +
+
+
+ +{% if repo.getCloneURL(true) or repo.getCloneURL(false) %} +
+ {% if repo.getCloneURL(true) %} +
+
Public clone URL
+ +
+ {% endif %} + {% if repo.getCloneURL(false) %} +
+
Private clone URL
+ +
+ {% endif %} +
+{% endif %} + {% for file in repo.getFiles %} -
-

{{file.getFilename}}

-

- raw -

- {{file.getHighlightedContent|raw}} +
+
+ raw +

{{file.getFilename}}

+
+
+ {{file.getHighlightedContent|raw}} +
{% endfor %} + +
+ +
+{% endblock %} + +{% block sidebar %} +sidebar FIXME {% endblock %}