~ubuntu-branches/ubuntu/precise/horizon/precise-updates

« back to all changes in this revision

Viewing changes to horizon/templates/horizon/common/_data_table.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-03-20 14:49:24 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20120320144924-s8rpema4nnko6oeg
Tags: 2012.1~rc1-0ubuntu1
New upstream release. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<div class="table_wrapper">
2
2
  <form action="{{ table.get_absolute_url }}" method="POST">{% csrf_token %}
3
 
  <div class='table_header'>
4
 
    <h3 class='table_title'>{{ table }}</h3>
5
 
    {{ table.render_table_actions }}
6
 
  </div>
7
3
  {% with columns=table.get_columns rows=table.get_rows %}
8
4
  <table id="{{ table.name }}" class="table table-bordered table-striped">
 
5
    <caption class='table_header'>
 
6
      <h3 class='table_title'>{{ table }}</h3>
 
7
      {{ table.render_table_actions }}
 
8
    </caption>
9
9
    <thead>
10
10
      <tr>
11
11
        {% for column in columns %}