views/users.php
author viric@mandarina
Sun, 28 Dec 2008 20:48:10 +0000
changeset 5 cb13c07e7e5d
parent 3 f3e55c2386a1
permissions -rw-r--r--
Made multilanguage. Catalan and Russian.

<h2><?=lang("users_str");?></h2>
<?=$loginlink?>

<h3><?=lang("compared_with_str");?> <?=$other_user_name?></h3>

<?=form_open("opiniarbo/index/$assertionid/$other_user"); ?>
    <select name="other_user">
<?php foreach($other_users as $user):
    if ($user['id'] != $other_user)
        echo "<option value=\"{$user['id']}\">{$user['name']}</option>";
    else
        echo "<option value=\"{$user['id']}\" selected>{$user['name']}</option>";
    endforeach;?>
    <input type="submit" name="compare" value="<?=lang("compare_with_str");?>">
</form>

<?=anchor("opiniarbo/index/0/$other_user",lang("showheadassertions_str"));