source: server/trunk/web/root/templates/html/rpms/analyse.html @ 244

Last change on this file since 244 was 244, checked in by nanardon, 14 years ago
  • add link to direct analyse
  • Property svn:keywords set to Id
File size: 934 bytes
Line 
1<!-- $Id$ -->
2
3[% INCLUDE 'rpms/menu.tt' %]
4
5<div id="sophie_body_main">
6
7<p>Find dependencies on distribution:</p>
8
9<form id="analysis_form" action="[% c.uri_for('/', c.req.path) %]" method="POST">
10    <span id="distribselect">
11    [% INCLUDE 'ajax/forms/distribselect.tt' form = 'analysis_form' %]
12    </span>
13    <input type="submit" name="analyse">
14</form>
15
16    [% INCLUDE 'rpms/analyse.tt' %]
17</div>
18
19
20<div id="sophie_body_additional">
21    [% FOREACH loc = c.forward('/rpms/location', [ pkgid ]) %]
22    [% IF loop.first %]
23    <p>Analyse over:</p>
24    <ul>
25    [% END %]
26    <li><a href="[% c.uri_for('/', c.req.path, {
27        distribution => loc.distribution,
28        release => loc.release,
29        arch => loc.arch,
30        analyse => 1,
31        }) %]">
32        [% loc.distribution | html %] / [% loc.release | html %] / [% loc.arch | html %]</a>
33    </li>
34    [% IF loop.last %]
35    </ul>
36    [% END %]
37    [% END %]
38</div>
Note: See TracBrowser for help on using the repository browser.