Changeset - b037d11ccc37
[Not reviewed]
default
0 1 0
Branko Majic (branko) - 11 years ago 2013-03-24 09:44:05
branko@majic.rs
Download icons are now aligned to the right in widget templaes.
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
conntrackt/templates/conntrackt/project_widget.html
Show inline comments
 
{% load conntrackt %}
 
  <table class="table table-striped">
 
    <tr><td><strong>{% html_link project.name 'project' project.id title=project.description %}</strong></td><td>{% html_link '<i class="icon-book"></i>' 'project_iptables' project.id class="btn btn-link" %}</td></tr>
 
    <tr><td><strong>{% html_link project.name 'project' project.id title=project.description %}</strong></td><td>{% html_link '<i class="icon-book"></i>' 'project_iptables' project.id class="btn btn-link pull-right" %}</td></tr>
 
{% for entity in project.entity_set.all %}
 
    <tr><td>{% html_link entity.name 'entity' entity.id class="btn btn-link" %}</td><td>{% html_link '<i class="icon-list"></i>' 'entity_iptables' entity.id class="btn btn-link" %}</td></tr>
 
    <tr><td>{% html_link entity.name 'entity' entity.id class="btn btn-link" %}</td><td>{% html_link '<i class="icon-list"></i>' 'entity_iptables' entity.id class="btn btn-link pull-right" %}</td></tr>
 
{% endfor %}
 
  </table>
 

	
0 comments (0 inline, 0 general)