Created
June 3, 2020 07:25
-
-
Save EleaFederio/35ea7cc44bc56d0e0731948a4855c4d4 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
$('#quantity').val(data.product.quantity); | |
$('#details').val(data.product.details); | |
$('#price').val(data.product.price); | |
$('#category').val(data.product.category); | |
$('#status').val(data.product.status); | |
$('#due_date').val(data.product.due_date); | |
var preview_image_url = data.product.picture == null ? 'image_not_available.png' : data.product.picture; | |
$('#productPic2').attr('src', 'http://127.0.0.1:8000/images/'+preview_image_url); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment