with open(path.join(docs_path, "documentation.html"), "w", encoding="utf-8") as f:
f.write(render_template("docs.html", data=static_data, info=static_info, book=True))
+ floorplan_path = path.join(app.root_path, 'static', 'floorplan.png')
+ cameras_path = path.join(app.root_path, 'static', 'cameras.png')
+ system(f"cp '{floorplan_path}' '{docs_path}'")
+ system(f"cp '{cameras_path}' '{docs_path}'")
+
system(f"ebook-convert '{path.join(docs_path, 'documentation.html')}' '{path.join(docs_path, 'documentation.mobi')}' --title='XMDV Teleshopping Documentation' --authors='William Greenwood' --comments='Valid for {static_info['shoot']['date']}' --language=en --change-justification=left --cover='{path.join(app.root_path, 'static', 'cover.jpg')}'")
system(f"ebook-convert '{path.join(docs_path, 'documentation.html')}' '{path.join(docs_path, 'documentation.epub')}' --title='XMDV Teleshopping Documentation' --authors='William Greenwood' --comments='Valid for {static_info['shoot']['date']}' --language=en --change-justification=left --cover='{path.join(app.root_path, 'static', 'cover.jpg')}'")
{% endfor %}
</table>
- <h2>Floor-plan</h2>
- <img src="/static/floorplan.png" style="width:100%"></img>
+ {% if book %}
+ <h2>Floor-plan</h2>
+ <img src="./floorplan.png" style="width:100%"></img>
- <h2>Camera layout</h2>
- <img src="/static/cameras.png" style="width:100%"></img>
+ <h2>Camera layout</h2>
+ <img src="./cameras.png" style="width:100%"></img>
+ {% else %}
+ <h2>Floor-plan</h2>
+ <img src="/static/floorplan.png" style="width:100%"></img>
+
+ <h2>Camera layout</h2>
+ <img src="/static/cameras.png" style="width:100%"></img>
+ {% endif %}
<h2>Text options</h2>
<table>