source: trunk/web/app/out/dist/content/set_artistes/e_add_user_artiste.php

Last change on this file was 6, checked in by dj3c1t, 12 years ago

mise a jour du trunk

File size: 1.5 KB
Line 
1<h2>Nouvel artiste pour <?= $env->out["user"]["username"] ?></h2>
2<div class="bloc_content">
3
4<form name="artiste_form" action="<?=
5    $env->url
6    ( array
7      ( "e" => "set_artistes",
8        "action" => "add_user_artiste",
9        "user" => $_GET[$env->param("user")]
10      )
11    )
12  ?>" method="post">
13<table class="admin">
14  <tr>
15    <td>
16      <p><strong>Nom de l'artiste</p></strong>
17      <p>
18        L'artiste pourra changer ce nom dans son compte
19      </p>
20      <input type="text" name="nom" size="50" />
21    </td>
22  </tr>
23  <tr>
24    <td>
25      <p><strong>Forum de l'artiste</strong></p>
26      <select name="forum">
27        <option value="0">pas de forum</option>
28      <?php if($env->out["forums"]) : foreach($env->out["forums"] as $id_forum => $forum) : ?>
29        <option value="<?= $id_forum ?>"><?= $forum["forum_name"] ?></option>
30      <?php endforeach; endif; ?>
31      </select>
32    </td>
33  </tr>
34  <!-- tr>
35    <td>
36      <p><strong>dossier personnel</p></strong>
37      <p>laisser vide pour pas de dossier personnel</p>
38      <input type="text" name="dossier_personnel" size="50" value="" />
39    </td>
40  </tr -->
41  <tr>
42    <td colspan="2" align="right">
43      <input type="submit" value="ajouter" />
44      <a href="<?=
45          $env->url
46          ( array
47            ( "e" => "set_artistes",
48              "action" => "user_artistes",
49              "user" => $_GET[$env->param("user")]
50            )
51          )
52        ?>">annuler</a>
53    </td>
54  </tr>
55</table>
56</form>
57</div>
Note: See TracBrowser for help on using the repository browser.