Skip to content

Instantly share code, notes, and snippets.

@lemoonbox
Created November 4, 2015 06:45
Show Gist options
  • Save lemoonbox/84c03ef242644149c67b to your computer and use it in GitHub Desktop.
Save lemoonbox/84c03ef242644149c67b to your computer and use it in GitHub Desktop.
{% for image in teach_data.db_images%}
<div>
<img src="data:image/png;base64,{{image}}"/>
<span onclick="deleteImg(this);"></span>
</div>
{% endfor %}
{% for i in teach_data.empty_box %}
<div>
<img src="" hidden>
<span onclick="deleteImg(this);"></span>
</div>
{% endfor %}
<input type="file" name="image" id="filePhoto1" />
<input type="file" name="image" id="filePhoto2" />
<input type="file" name="image" id="filePhoto3" />
<input type="file" name="image" id="filePhoto4" />
<input type="file" name="image" id="filePhoto5" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment