summaryrefslogtreecommitdiffstats
path: root/smarty/templates/rpmphp/index.tpl
blob: df6cb52587eed47ca42bf2c83a2e7173ace5e133 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
                <h2>Package reports</h2>
                <ul id="reports">
                    <li><a href="rpm.php?type=pecl">PECL Extensions in Fedora</a> with upstream information</li>
                    <li><a href="rpm.php?type=pear">PEAR Extensions in Fedora</a> with upstream information</li>
                    <li><a href="rpm.php?type=R">R Extensions in Fedora</a> with upstream information</li>
                    <li><a href="all.php">All Packages in Fedora</a></li>
                </ul><!-- /reports -->
                <table id="list-packages">
                    <caption><strong>Analysed repositories</strong></caption>
                    <thead>
                        <tr>
                            <th>Main</th>
                            <th>Active</th>
                            <th>Sub</th>
                            <th>Url</th>
                            <th>Last update</th>
                        </tr>
                    </thead>
                    <tbody>
{if $error}
                        <tr>
                            <td colspan="5">{$error}</td>
                        </tr>
{else}
    {foreach from=$repositories item=repo name=rlist}
                        <tr class="{if $smarty.foreach.rlist.iteration % 2 eq 0}even{else}odd{/if}">
                            <td><strong>{$repo.repo_name}</strong></td>
                            <td>{$repo.active}</td>
                            <td>{$repo.sub_name}</td>
                            <td><a href="{$repo.url}">{$repo.url}</a></td>
                            <td>{$repo.date}</td>
                        </tr>
    {/foreach}
{/if}
                    </tbody>
                </table><!-- /list-pacakges -->
                <h2>Script sources</h2>
                <p>You can retrieve the current application sources from my GIT repository on github.com: <a href='http://github.com/remicollet/rpmphp'>http://github.com/remicollet/rpmphp</a>.</p>
                <p>Feedbacks, RFE and patches are welcome.</p>