~cloud-portal-dev/ubuntu-cloud-portal/dj-backend

« back to all changes in this revision

Viewing changes to templates/headers.html

  • Committer: Adnane Belmaiaf
  • Date: 2012-04-14 02:12:55 UTC
  • Revision ID: daker@ubuntu.com-20120414021255-nftif1rh0iir6xl1
* Cool new staff for the new version.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<tr>
 
2
                        <th>
 
3
                        <select>
 
4
                            <option value="All">All</option>
 
5
                        {% for awszone in ami_list_awszone %}
 
6
                            <option value="{{ awszone }}">{{ awszone }}</option>
 
7
                        {% endfor %}
 
8
                        </select>
 
9
                        </th>
 
10
                        <th>
 
11
                        <select>
 
12
                            <option value="All">All</option>
 
13
                        {% for name in ami_list_name %}
 
14
                            <option value="{{ name }}">{{ name }}</option>
 
15
                        {% endfor %}
 
16
                        </select>
 
17
                        </th>
 
18
                        <th>
 
19
                        <select>
 
20
                            <option value="All">All</option>
 
21
                        {% for arch in ami_list_arch %}
 
22
                             <option value="{{ arch }}">{{ arch }}</option>
 
23
                        {% endfor %}
 
24
                        </select>
 
25
                        </th>
 
26
                        <th>
 
27
                        <select>
 
28
                            <option value="All">All</option>
 
29
                        {% for ebs in ami_list_ebs %}
 
30
                             <option value="{{ ebs }}">{{ ebs }}</option>
 
31
                        {% endfor %}
 
32
                        </select>
 
33
                        </th>
 
34
                        <th>
 
35
                        <select>
 
36
                            <option value="All">All</option>
 
37
                        {% for serial in ami_list_serial %}
 
38
                             <option value="{{ serial }}">{{ serial }}</option>
 
39
                        {% endfor %}
 
40
                        </select>
 
41
                        </th>
 
42
                        <th>
 
43
                        <select>
 
44
                            <option value="All">All</option>
 
45
                        {% for amiid in ami_list_amiid %}
 
46
                            <option value="{{ amiid }}">{{ amiid }}</option>
 
47
                        {% endfor %}
 
48
                        </select>
 
49
                        </th>
 
50
                        <th class="last_ami">
 
51
                        <select>
 
52
                            <option value="All">All</option>
 
53
                        {% for akiid in ami_list_akiid %}
 
54
                            <option value="{{ akiid }}">{{ akiid }}</option>
 
55
                        {% endfor %}
 
56
                        </select>
 
57
                        </th>
 
58
                    </tr>