You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
700 B

  1. ::use 'contractadmin/design.mtt'::
  2. <h2>::_("Import a photo of the product")::</h2>
  3. <div class="row">
  4. <div class="col-md-6">
  5. <form action="" method="POST" enctype="multipart/form-data">
  6. <input name="image" type="file" class="btn btn-default"/>
  7. <br/>
  8. ::_("Size of the photo: 300 x 300px"):: <br/>
  9. ::_("Format : JPEG"):: <br/>
  10. <br/>
  11. <input type="submit" value="::_("Send")::" class="btn btn-primary" />
  12. </form>
  13. <br/>
  14. <a href="/contractAdmin/products/::c.id::" class="btn btn-default btn-xs">::_("Back to the management of products")::</a>
  15. </div>
  16. <div class="col-md-6" ::cond image!=null:: >
  17. <img src="::file(image)::" class="img-thumbnail" />
  18. </div>
  19. </div>
  20. ::end::