Commit 6ebd250f5e9ec9905bb703756bd10ed8db87584e

Authored by Gustavo
1 parent ae665cf2

Including crop js of users in the users templates

users/templates/users/_form.html
... ... @@ -83,3 +83,4 @@
83 83  
84 84 </form>
85 85 {% include 'users/modal_crop.html' %}
  86 +<script src="{% static 'js/crop.js' %}"></script> <!-- Js for cropper-->
... ...
users/templates/users/list.html
... ... @@ -80,4 +80,7 @@
80 80 <div id="modal_remove">
81 81  
82 82 </div>
  83 +
  84 +
  85 +<script src="{% static 'js/crop.js' %}"></script> <!-- Js for cropper-->
83 86 {% endblock %}
... ...
users/templates/users/register.html
... ... @@ -101,6 +101,7 @@
101 101 </div>
102 102  
103 103 {% include 'users/modal_crop.html' %}
  104 +<script src="{% static 'js/crop.js' %}"></script> <!-- Js for cropper-->
104 105  
105 106 {% endblock %}
106 107  
... ...