Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Gaudebert authored and Adrian Gaudebert committed Dec 2, 2009
1 parent f0aa7f1 commit b11927b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions dev/app/views/teams/add_user.ctp
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<h1>Ajouter un membre à une équipe</h1>

<?php

echo $form->create('Team', array("action" => "add_user/" . $id));
echo $form->label("user_id", "Choisissez un membre");
echo $form->select("user_id", $members);
echo $form->end('Ajouter');

?>

<p><?php echo $html->link("Retour à l'équipe", array("action" => "view", $id)); ?></p>

0 comments on commit b11927b

Please sign in to comment.