Compare commits
2 Commits
2b19398465
...
8ef613b155
Author | SHA1 | Date | |
---|---|---|---|
8ef613b155 | |||
40f521543a |
@ -51,11 +51,19 @@ def fromdir(root_url, url, content_base_path, content_relative_path):
|
||||
|
||||
path = os.path.join(content_base_path, content_relative_path)
|
||||
|
||||
#print(path)
|
||||
c = Catalog(
|
||||
title=os.path.basename(os.path.dirname(path)), root_url=root_url, url=url
|
||||
)
|
||||
#print(c.url)
|
||||
if os.path.basename(content_relative_path) == "":
|
||||
c = Catalog(
|
||||
title="Comics",
|
||||
root_url=root_url,
|
||||
url=url
|
||||
)
|
||||
else:
|
||||
c = Catalog(
|
||||
title=os.path.basename(content_relative_path),
|
||||
root_url=root_url,
|
||||
url=url
|
||||
)
|
||||
#title=os.path.basename(os.path.dirname(path)), root_url=root_url, url=url
|
||||
|
||||
##########WORKING AREA###########
|
||||
searchArr=[]
|
||||
|
9
templates/start.html
Normal file
9
templates/start.html
Normal file
@ -0,0 +1,9 @@
|
||||
<table id="comics">
|
||||
{% for i in result %}
|
||||
<tr>
|
||||
{% for j in range(0,9) %}
|
||||
<td>{{ i[j] }}</td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
Loading…
Reference in New Issue
Block a user