diff options
| author | 2013-03-14 16:49:14 +0100 | |
|---|---|---|
| committer | 2013-03-14 16:49:14 +0100 | |
| commit | f53c01dcd49e2a1e974efb7b91bfe50981640b11 (patch) | |
| tree | 33c149b6f10245a03b864b591fc350187fa196a8 /app/views/configure/display.phtml | |
| parent | 9332fd5b0c1720a38aa5c85564da20c89a0f8a96 (diff) | |
Bien meilleure gestion des formulaires
Diffstat (limited to 'app/views/configure/display.phtml')
| -rw-r--r-- | app/views/configure/display.phtml | 114 |
1 files changed, 69 insertions, 45 deletions
diff --git a/app/views/configure/display.phtml b/app/views/configure/display.phtml index d90f48240..bf488dbe0 100644 --- a/app/views/configure/display.phtml +++ b/app/views/configure/display.phtml @@ -1,53 +1,77 @@ <?php $this->partial ('aside_configure'); ?> -<div class="table"> - <form method="post" action=""> - <h1>Configuration générale</h1> - - <label for="old_entries">Supprimer les articles au bout de (mois)</label> - <input type="number" id="old_entries" name="old_entries" value="<?php echo $this->conf->oldEntries (); ?>" /> - - <label for="mail_login">Adresse mail de connexion (utilise <a href="https://persona.org/">Persona</a>)</label> - <p><noscript>nécessite que javascript soit activé</noscript></p> +<div class="post"> + <form method="post" action="<?php echo _url ('configure', 'display'); ?>"> + <legend>Configuration générale</legend> + + <div class="form-group"> + <label class="group-name" for="old_entries">Supprimer les articles tous les</label> + <div class="group-controls"> + <input type="number" id="old_entries" name="old_entries" value="<?php echo $this->conf->oldEntries (); ?>" /> mois + </div> + </div> + + <div class="form-group"> + <label class="group-name" for="mail_login">Adresse mail de connexion (utilise <a href="https://persona.org/">Persona</a>)</label> <?php $mail = $this->conf->mailLogin (); ?> - <input type="email" id="mail_login" name="mail_login" value="<?php echo $mail ? $mail : ''; ?>" placeholder="Laissez vide pour désactiver" /> - <br /> - - <h1>Configuration de l'affichage</h1> - - <label for="posts_per_page">Nombre d'articles par page</label> - <input type="number" id="posts_per_page" name="posts_per_page" value="<?php echo $this->conf->postsPerPage (); ?>" /> - - <label>Vue par défaut</label> - <div class="radio_group"> - <label for="radio_all"> - <input type="radio" name="default_view" id="radio_all" value="all"<?php echo $this->conf->defaultView () == 'all' ? ' checked="checked"' : ''; ?> /> - Tout afficher - </label> - <label for="radio_not_read"> - <input type="radio" name="default_view" id="radio_not_read" value="not_read"<?php echo $this->conf->defaultView () == 'not_read' ? ' checked="checked"' : ''; ?> /> - Afficher les non lus - </label> + <div class="group-controls"> + <input type="email" id="mail_login" name="mail_login" value="<?php echo $mail ? $mail : ''; ?>" placeholder="Laissez vide pour désactiver" /> + <noscript><b>nécessite que javascript soit activé</b></noscript> + </div> </div> - <label for="sort_order">Ordre de tri</label> - <select name="sort_order" id="sort_order"> - <option value="low_to_high"<?php echo $this->conf->sortOrder () == 'low_to_high' ? ' selected="selected"' : ''; ?>>Du plus récent au plus ancien</option> - <option value="high_to_low"<?php echo $this->conf->sortOrder () == 'high_to_low' ? ' selected="selected"' : ''; ?>>Du plus ancien au plus récent</option> - </select> - - <label>Afficher les articles dépliés par défaut</label> - <div class="radio_group"> - <label for="radio_yes"> - <input type="radio" name="display_posts" id="radio_yes" value="yes"<?php echo $this->conf->displayPosts () == 'yes' ? ' checked="checked"' : ''; ?> /> - Oui - </label> - <label for="radio_no"> - <input type="radio" name="display_posts" id="radio_no" value="no"<?php echo $this->conf->displayPosts () == 'no' ? ' checked="checked"' : ''; ?> /> - Non<noscript> - <strong>nécessite que javascript soit activé</strong></noscript> - </label> + <legend>Configuration de l'affichage</legend> + + <div class="form-group"> + <label class="group-name" for="posts_per_page">Nombre d'articles par page</label> + <div class="group-controls"> + <input type="number" id="posts_per_page" name="posts_per_page" value="<?php echo $this->conf->postsPerPage (); ?>" /> + </div> + </div> + + <div class="form-group"> + <label class="group-name">Vue par défaut</label> + <div class="group-controls"> + <label class="radio" for="radio_all"> + <input type="radio" name="default_view" id="radio_all" value="all"<?php echo $this->conf->defaultView () == 'all' ? ' checked="checked"' : ''; ?> /> + Tout afficher + </label> + <label class="radio" for="radio_not_read"> + <input type="radio" name="default_view" id="radio_not_read" value="not_read"<?php echo $this->conf->defaultView () == 'not_read' ? ' checked="checked"' : ''; ?> /> + Afficher les non lus + </label> + </div> + </div> + + <div class="form-group"> + <label class="group-name" for="sort_order">Ordre de tri</label> + <div class="group-controls"> + <select name="sort_order" id="sort_order"> + <option value="low_to_high"<?php echo $this->conf->sortOrder () == 'low_to_high' ? ' selected="selected"' : ''; ?>>Du plus récent au plus ancien</option> + <option value="high_to_low"<?php echo $this->conf->sortOrder () == 'high_to_low' ? ' selected="selected"' : ''; ?>>Du plus ancien au plus récent</option> + </select> + </div> + </div> + + <div class="form-group"> + <label class="group-name">Afficher les articles dépliés par défaut</label> + <div class="group-controls"> + <label class="radio" for="radio_yes"> + <input type="radio" name="display_posts" id="radio_yes" value="yes"<?php echo $this->conf->displayPosts () == 'yes' ? ' checked="checked"' : ''; ?> /> + Oui + </label> + <label class="radio" for="radio_no"> + <input type="radio" name="display_posts" id="radio_no" value="no"<?php echo $this->conf->displayPosts () == 'no' ? ' checked="checked"' : ''; ?> /> + Non<noscript> - <b>nécessite que javascript soit activé</b></noscript> + </label> + </div> + </div> + + <div class="form-group form-actions"> + <div class="group-controls"> + <button type="submit" class="btn btn-important">Valider</button> + <button type="reset" class="btn">Annuler</button> + </div> </div> - - <button class="btn btn-important">Valider</button> </form> </div> |
