Skip to content

Instantly share code, notes, and snippets.

Created May 19, 2014 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/01836bc24113c3373e92 to your computer and use it in GitHub Desktop.
Save anonymous/01836bc24113c3373e92 to your computer and use it in GitHub Desktop.
View
{% extends '::base.html.twig' %}
{% block body %}
{{ form(form) }}
<script>
$(document).ready(function(){
var $file = $('#book_file');
$file.parent().after(
'<div class="form-group">' +
'<label class="control-label" for="covers[]">Cover(s)</label>' +
'<input type="file" name="covers[]" />'
);
});
</script>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment