|  | @@ -1,8 +1,10 @@
 | 
	
		
			
				|  |  |  {% load i18n %}
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -<div class="dashboard-item{% if module.collapsible %} collapsible{% endif %}{% if module.model.collapsed %} collapsed{% endif %}{% if module.deletable %} deletable{% endif %}{% if module.ajax_load %} ajax{% endif %}"{% if module.ajax_load %} data-ajax-url="{% url "jet-dashboard:load_dashboard_module" pk=module.model.id %}"{% endif %} data-module-id="{{ module.model.id }}">
 | 
	
		
			
				|  |  | +<div class="dashboard-item{% if module.collapsible %} collapsible{% endif %}{% if module.model.collapsed %} collapsed{% endif %}{% if module.deletable %} deletable{% endif %}{% if module.ajax_load %} ajax{% endif %}{% if module.draggable %} draggable{% endif %}"{% if module.ajax_load %} data-ajax-url="{% url "jet-dashboard:load_dashboard_module" pk=module.model.id %}"{% endif %} data-module-id="{{ module.model.id }}">
 | 
	
		
			
				|  |  |      <div class="dashboard-item-header">
 | 
	
		
			
				|  |  | -        <span class="dashboard-item-header-drag icon-grid"></span>
 | 
	
		
			
				|  |  | +        {% if module.draggable %}
 | 
	
		
			
				|  |  | +            <span class="dashboard-item-header-drag icon-grid"></span>
 | 
	
		
			
				|  |  | +        {% endif %}
 | 
	
		
			
				|  |  |          <span class="dashboard-item-header-buttons">
 | 
	
		
			
				|  |  |              <a href="{% url "jet-dashboard:update_module" pk=module.model.id %}" title="{% trans "Change" %}"><span class="icon-edit"></span></a>
 | 
	
		
			
				|  |  |  
 |