source: server/trunk/web/root/templates/html/analysis/analyse_folder.tt @ 207

Last change on this file since 207 was 207, checked in by nanardon, 13 years ago
  • add analyse functions (need yet to be improve)
  • Property svn:keywords set to Id
File size: 379 bytes
Line 
1<!-- $Id$ -->
2
3[% FOREACH pkg = c.forward('/user/folder/list') %]
4<h2>[% pkg.name | html %]</h2>
5<div id="req[% pkg.id %]">
6Loading...
7</div>
8[% END %]
9
10<script>
11[% FOREACH pkg = c.forward('/user/folder/list') %]
12
13new Ajax.Updater('req[% pkg.id %]',
14        '[% c.uri_for('/analysis/required_by', pkg.id, { ajax => 1 }) %]',
15        { asynchronous: 1 } );
16
17[% END %]
18</script>
Note: See TracBrowser for help on using the repository browser.