~canonical-isd-hackers/canonical-webmonkeys/webapps-rebrand

« back to all changes in this revision

Viewing changes to certification/views/index.html

  • Committer: Szilveszter Farkas
  • Date: 2010-04-20 09:34:37 UTC
  • Revision ID: szilveszter.farkas@canonical.com-20100420093437-y3wpg0yin0j0dwkn
Fix certification main site markup.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
systems that have passed Canonical's hardware validation tests and have
6
6
either been awarded Certified or Compatible status.</p>
7
7
 
8
 
<br />
9
 
 
10
 
<blockquote>
11
8
<h3>Release</h3>
12
9
 
13
10
<table>
22
19
  {% endfor %}
23
20
</table>
24
21
 
25
 
<br />
26
 
 
27
22
<h3>Machine type</h3>
28
23
 
29
24
<table>
34
29
  </tr>
35
30
</table>
36
31
 
37
 
</blockquote>
38
 
 
39
 
<br />
40
 
 
41
32
<h2>Search validated hardware</h2>
42
33
 
43
 
<blockquote>
 
34
<p>
44
35
  <form action="list" method="GET">
45
36
  <input type="text" name="search" value="" />
46
37
  <input id="button" type="submit" value="Search" />
47
38
  </form>
48
 
</blockquote>
49
 
 
50
 
<br />
 
39
</p>
51
40
 
52
41
<h2>Recently validated hardware</h2>
53
42
 
54
 
<blockquote>
55
 
  <table>
 
43
<ul>
56
44
    {% for recent in recents %}
57
 
    <tr>
58
 
      <td><a href="/certification/hardware/{{ recent.hardware_name }}">{{ recent.make }} {{ recent.models }}</a></td>
59
 
    </tr>
 
45
    <li><a href="/certification/hardware/{{ recent.hardware_name }}">{{ recent.make }} {{ recent.models }}</a></li>
60
46
    {% endfor %}
61
 
  </table>
62
 
</blockquote>
63
 
 
 
47
</ul>
64
48
 
65
49
<h2>Community hardware</h2>
66
50
 
67
 
<blockquote>
68
51
<p>Ubuntu works on a range of hardware which has not been validated by
69
52
the manufacturer.  The Ubuntu community works together to test and report
70
53
the range of systems and components that work with Ubuntu.  You can see
75
58
  <li><a href="https://wiki.ubuntu.com/HardwareSupport/">https://wiki.ubuntu.com/HardwareSupport/</a></li>
76
59
  <li><a href="http://ubuntuforums.org/forumdisplay.php?f=135">http://ubuntuforums.org/forumdisplay.php?f=135</a></li>
77
60
</ul>
78
 
</blockquote>
79
61
 
80
62
{% endblock %}