diff options
| author | 2013-04-11 21:27:29 +0200 | |
|---|---|---|
| committer | 2013-04-11 21:27:29 +0200 | |
| commit | e2171de4e6b090fbbad07d8852a068ec7ca050c0 (patch) | |
| tree | e47188b3a589099d41125445bedfd39963d94b11 /app/views | |
| parent | 61943f1661383bf8017b4c2a76fd11618e4adae0 (diff) | |
Fix issue #37 : possibilité de sortir un site du flux principal (utile pour les sites qui publient beaucoup)
Diffstat (limited to 'app/views')
| -rw-r--r-- | app/views/configure/feed.phtml | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/app/views/configure/feed.phtml b/app/views/configure/feed.phtml index 2adc5c839..adea27e52 100644 --- a/app/views/configure/feed.phtml +++ b/app/views/configure/feed.phtml @@ -9,28 +9,25 @@ <form method="post" action="<?php echo _url ('configure', 'feed', 'id', $this->flux->id ()); ?>"> <legend>Informations</legend> - <div class="form-group"> <label class="group-name">URL du site</label> <div class="group-controls"> <span class="control"><a target="_blank" href="<?php echo $this->flux->website (); ?>"><?php echo $this->flux->website (); ?></a></span> </div> </div> - <div class="form-group"> <label class="group-name">URL du flux</label> <div class="group-controls"> <span class="control"><a target="_blank" href="<?php echo $this->flux->url (); ?>"><?php echo $this->flux->url (); ?></a></span> </div> </div> - <div class="form-group"> <label class="group-name">Nombre d'articles</label> <div class="group-controls"> <span class="control"><?php echo $this->flux->nbEntries (); ?></span> </div> </div> - + <legend>Catégorie - <a href="<?php echo _url ('configure', 'categorize'); ?>">gestion</a></legend> <div class="form-group"> <label class="group-name">Ranger dans une catégorie</label> @@ -46,13 +43,21 @@ <legend>Avancé</legend> <div class="form-group"> + <label class="group-name" for="priority">Afficher dans le flux principal</label> + <div class="group-controls"> + <label class="checkbox" for="priority"> + <input type="checkbox" name="priority" id="priority" value="10"<?php echo $this->flux->priority () > 0 ? ' checked="checked"' : ''; ?> /> + Oui + </label> + </div> + </div> + <div class="form-group"> <label class="group-name" for="path_entries">Chemin CSS des articles sur le site d'origine</label> <div class="group-controls"> <input type="text" name="path_entries" id="path_entries" value="<?php echo $this->flux->pathEntries (); ?>" placeholder="Laissez vide pour désactiver" /> <i class="icon i_help"></i> Permet de récupérer les flux tronqués (attention, demande plus de temps !) </div> </div> - <!-- <div class="form-group"> <label class="group-name" for="http_user">Username HTTP</label> |
