| <?php |
| #***************************************************************************** |
| # |
| # en_committerlists.inc |
| # |
| # Author: Denis Roy |
| # Date: 2006-08-24 |
| # |
| # Description: Links to committer lists |
| # |
| # HISTORY: |
| # |
| #**************************************************************************** |
| |
| include("../html/header.php"); |
| |
| $Menu = new Menu("en"); |
| |
| include("../modules/menu.php"); |
| |
| ?> |
| <br /> |
| <td width="100%" valign="top" class="normal"> |
| <form name="form1" method="post"> |
| <font class="large_title">Committer lists per project</font><br /><br /> |
| |
| You are a member of the UNIX groups below. Disk quotas are updated hourly.<br /><br /> |
| |
| <?= $ErrorMessage != "" ? "<font class='error'>" . $ErrorMessage . "</font>" : "" ?> |
| |
| <table width="100%" cellpadding="0" cellspacing="0" border="0" class="rect_header"> |
| <tr height="<?= $App->getDefaultRowHeight() ?>"> |
| <td width="5"></td> |
| <td nowrap="true" class="rect_header">My groups</td> |
| <td width="100%"></td> |
| <td nowrap="true" id="action_bar"> |
| </td> |
| </tr> |
| <tr> |
| <td height="1"></td> |
| </tr> |
| </table> |
| <table width="100%" cellpadding="0" cellspacing="0" border="0" class="normal"> |
| <tr class="list_column_header" height="<?= $App->getDefaultRowHeight() ?>"> |
| <td><b>Project</b></td> |
| </tr> |
| <?php |
| for($i = 0; $i < $ProjectList->getCount(); $i++) { |
| |
| $Project = $ProjectList->getItemAt($i); |
| ?> |
| <tr height="<?= $App->getDefaultRowHeight() ?>" class="data<?= $i % 2 ?>"> |
| <td><?= $Project->getProjectID() ?></td> |
| </tr> |
| <tr height="1" class="menu_border"> |
| <td colspan="7"></td> |
| </tr> |
| |
| <?php |
| } |
| ?> |
| </table> |
| <table width="100%" cellpadding="0" cellspacing="0" border="0" class="normal"> |
| <tr height="1"> |
| <td colspan="2"></td> |
| </tr> |
| <tr class="list_column_header"> |
| <td width="5"></td> |
| <td><b><?= $i ?> association<?= $i != 1 ? "s" : "" ?> found.</td> |
| </tr> |
| </table> |
| </form> |
| </td> |
| <?php |
| include("../html/footer.php"); |
| ?> |