source: branches/rsr.v5.1.dev/web/app/out/dist/content/e_set_artiste_infos.php @ 1

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

import initial

File size: 4.0 KB
Line 
1<div class="bloc">
2  <h2><?php echo $env->out["artiste"]["nom"]; ?></h2>
3  <div class="bloc_content">
4
5    <?php require $env->out_file("views/artiste_onglets.php") ?>
6
7    <?php if($env->out["edit_ok"]) : ?>
8
9    <div id="artiste_left">
10<?php require $env->out_file("views/menu_admin_artiste.php") ?>
11    </div>
12    <div id="artiste_right">
13
14    <form name="infos"
15          action="<?= $env->url(array("e" => "set_artiste_infos", "artiste" => $env->out["artiste"]["id"])) ?>"
16          method="post"
17          enctype="multipart/form-data">
18      <h3>Informations g&eacute;n&eacute;rales</h3>
19      <br />
20      <table class="admin">
21        <tr>
22          <th>Nom</th>
23          <td><input type="text" name="nom" value="<?= $env->out["artiste"]["nom"] ?>" size="40"/></td>
24        </tr>
25
26
27        <tr>
28         <th><br />image</th>
29          <td>
30            <br />
31<?php if($env->out["artiste"]["image"]) : ?>
32            <input type="checkbox" name="del_image" /> effacer l'image
33<?php else : ?>
34            aucune image pour le moment
35<?php endif; ?>
36            <br />
37            <input type="file" name="image" style="width: 400px">
38            <br />
39          </td>
40        </tr>
41
42        <tr>
43          <th>Style</th>
44          <td><input type="text" name="style" value="<?= $env->out["artiste"]["style"] ?>" size="40"/></td>
45        </tr>
46        <tr>
47          <th>Localisation</th>
48          <td><input type="text" name="pays" value="<?= $env->out["artiste"]["pays"] ?>" size="40"/></td>
49        </tr>
50      </table>
51      <br />
52      <h3>Contact et liens</h3>
53      <br />
54      <table class="admin">
55        <tr>
56          <th>Email contact</th>
57          <td>
58            <input type="text" name="email_contact" value="<?= $env->out["artiste"]["email_contact"] ?>" size="40"/><br />
59            <input type="checkbox" name="hide_email" <?= $env->out["artiste"]["hide_email"] ? "checked " : "" ?>/>
60            ne pas montrer l'adresse email<br />
61            <input type="checkbox" name="contact_form" <?= $env->out["artiste"]["contact_form"] ? "checked " : "" ?>/>
62            autoriser le formulaire de contact
63          </td>
64        </tr>
65        <tr>
66          <th>Site web</th>
67          <td><input type="text" name="site" value="<?= $env->out["artiste"]["site"] ?>" size="40"/></td>
68        </tr>
69        <tr>
70          <th>Lien Facebook</th>
71          <td><input type="text" name="lien_facebook" value="<?= $env->out["artiste"]["lien_facebook"] ?>" size="40"/></td>
72        </tr>
73        <tr>
74          <th>Lien Flickr</th>
75          <td><input type="text" name="lien_flickr" value="<?= $env->out["artiste"]["lien_flickr"] ?>" size="40"/></td>
76        </tr>
77        <tr>
78          <th>Lien Twitter</th>
79          <td><input type="text" name="lien_twitter" value="<?= $env->out["artiste"]["lien_twitter"] ?>" size="40"/></td>
80        </tr>
81        <tr>
82          <th>Lien Blip.Tv</th>
83          <td><input type="text" name="lien_youtube" value="<?= $env->out["artiste"]["lien_youtube"] ?>" size="40"/></td>
84        </tr>
85      </table>
86      <br />
87      <h3>Don Paypal et boutique en ligne</h3>
88      <table class="admin">
89        <tr>
90          <th>Identifiant de compte Paypal</th>
91          <td>
92            <p>Si vous avez un compte Paypal, indiquez ici votre identifiant de compte marchand s&eacute;curis&eacute; pour activer le bouton de dons.</p>
93            <input type="text" name="identifiant_paypal" value="<?= $env->out["artiste"]["identifiant_paypal"] ?>" size="40"/>
94          </td>
95        </tr>
96        <tr>
97          <th>Boutique en ligne</th>
98          <td>
99            <p>Si vous faites de la vente en ligne, indiquez ici un lien vers votre boutique.</p>
100            <input type="text" name="lien_boutique" value="<?= $env->out["artiste"]["lien_boutique"] ?>" size="40"/>
101          </td>
102        </tr>
103      </table>
104
105      <br />
106      <table class="admin">
107        <tr>
108          <td colspan="2" align="right"><input type="submit" value="Enregistrer" /></td>
109        </tr>
110      </table>
111
112
113
114    </form>
115    </div>
116    <div class="clear"><!-- --></div>
117
118    <?php endif; ?>
119  </div>
120</div>
Note: See TracBrowser for help on using the repository browser.