intern template
This commit is contained in:
34
templates/internfiles.html
Normal file
34
templates/internfiles.html
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
{% extends "layout.html" %}
|
||||||
|
{% block content %}<br>
|
||||||
|
<h1>asdf</h1>
|
||||||
|
{{dir.p}}
|
||||||
|
<ul>
|
||||||
|
{% for b in dir.bookmarks %}<li>
|
||||||
|
<a href="{{url_for('internfiles.web', path=b)}}">
|
||||||
|
{{b}}</a></li>
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
<p>sdf</p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>asdf</li>
|
||||||
|
</ul>
|
||||||
|
{{file}}
|
||||||
|
{{dir}}
|
||||||
|
{{dir.files}}
|
||||||
|
<h2>Text:</h2>
|
||||||
|
{{text|safe}}<br><br>
|
||||||
|
<ul>
|
||||||
|
{% for f in dir.files %}
|
||||||
|
<li>
|
||||||
|
{{f}} <a href="{{url_for('internfiles.web', path=path+f)}}">
|
||||||
|
{{f}}</a></li>
|
||||||
|
{% endfor %}</ul>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
{% for f in dir.dirs %}
|
||||||
|
<li><a href="{{url_for('internfiles.web', path=path+f)}}">
|
||||||
|
{{f}}</a></li>
|
||||||
|
{% endfor %}</ul>
|
||||||
|
|
||||||
|
{% endblock %}
|
||||||
Reference in New Issue
Block a user