do not show text field for binary files
[phorkie.git] / data / templates / display.htm
index ea2e2cd8a69f827ca4bb8b4e755a69d7bce13657..e02129600a7ff67cb7c836ad72fb202d58e12f37 100644 (file)
@@ -1,16 +1,22 @@
 {% extends "base.htm" %}
-{% block title %}{{description}}{% endblock %}
+{% block title %}
+ {%if repo.getDescription %}
+  {{repo.getDescription}}
+ {%else%}
+  {{repo.id}}
+ {%endif%}
+{% endblock %}
 
 {% block content %}
-<h1>{{repo.getDescription}}</h1>
-<p><a href="{{repo.getLink('edit')}}">edit</a></p>
+ {% include 'display-head.htm' %}
+
 {% for file in repo.getFiles %}
-<div>
- <h2>{{file.getFilename}}</h2>
- <p>
-  <a href="{{file.getLink('raw')}}">raw</a>
- </p>
- <pre>{{file.getContent}}</pre>
-</div>
+ {% include 'display-file.htm' %}
 {% endfor %}
+
+ {% include 'display-foot.htm' %}
+{% endblock %}
+
+{% block sidebar %}
+sidebar FIXME
 {% endblock %}