Created
November 4, 2015 06:45
-
-
Save lemoonbox/84c03ef242644149c67b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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