mirror of https://github.com/VLSIDA/OpenRAM.git
added files links
This commit is contained in:
parent
44638cb885
commit
79c4b3c4cd
|
|
@ -2,24 +2,27 @@
|
|||
</ul>
|
||||
<link rel="stylesheet" href="static/index.css">
|
||||
|
||||
<button class="collapsible">files</button>
|
||||
<div class="content">
|
||||
|
||||
{% for root, dir, files in os.walk(filedir) %}
|
||||
{% for root, dir, files in os.walk(filedir) %}
|
||||
|
||||
|
||||
<button class="collapsible">{{ root }}</button>
|
||||
<div class="content">
|
||||
{% for f in files %}
|
||||
<button class="collapsible">{{ f }}</button>
|
||||
<button class="collapsible">{{ root }}</button>
|
||||
<div class="content">
|
||||
<p> file information </p>
|
||||
</div>
|
||||
{% for f in files %}
|
||||
<button class="collapsible">{{ f }}</button>
|
||||
<div class="content">
|
||||
<a href="{{ root }}/{{ f }}">link</a>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
|
||||
{% endfor %}
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
var coll = document.getElementsByClassName("collapsible");
|
||||
var i;
|
||||
|
|
|
|||
Loading…
Reference in New Issue