Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. {% extends "base.html" %}
  2.  
  3. {% block content %}
  4.  
  5. <div class="col-md-4 col-lg-offset-4">
  6. {% if result == "CACTUS" %}
  7. <h4 style="color:green;">The image uploaded has a cactus plant</h1>
  8. {% elif result == "NOT CACTUS" %}
  9. <h4 style="color:red;">The image uploaded does not have a cactus plant</h1>
  10. {% endif %}
  11. </div>
  12.  
  13. <div class="col-md-4 col-lg-offset-4">
  14. <img src="data:image/jpg;base64, {{encoded_photo | safe}}" width="50%">
  15. </div>
  16.  
  17. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement