File diff 26c0c45a8480 → 018e7beed874
conntrackt/templates/conntrackt/index.html
Show inline comments
 
@@ -18,6 +18,7 @@
 
<div class="row">
 
  <div class="span12">
 
    {% html_link "Add project" "project_create" class="btn btn-primary" %}
 
    {% html_link "Add location" "location_create" class="btn btn-primary" %}
 
  </div>
 
</div>
 

	
 
@@ -53,6 +54,8 @@
 
          {% for location in locations %}
 
            <tr>
 
              <td style="width:99%">{{location.name}}</td>
 
              <td>{% html_link '<i class="icon-edit"></i>' "location_update" location.id class="btn btn-link" %}</td>
 
              <td>{% html_link '<i class="icon-remove"></i>' "location_delete" location.id class="btn btn-link" %}</td>
 
            </tr>
 
          {% endfor %}
 
        </table>