A free, self-hostable aggregator…
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
719 B

<?php $this->partial ('aside_configure'); ?>
<div class="table">
<form method="post" action="">
<h1>Gérer les catégories</h1>
<?php $i = 0; foreach ($this->categories as $cat) { $i++; ?>
<label for="cat_<?php echo $cat->id (); ?>">Catégorie n°<?php echo $i; ?></label>
<input type="text" id="cat_<?php echo $cat->id (); ?>" name="categories[]" value="<?php echo $cat->name (); ?>" />
<input type="hidden" name="ids[]" value="<?php echo $cat->id (); ?>" />
<?php } ?>
<label for="new_category">Ajouter une catégorie</label>
<input type="text" id="new_category" name="new_category" placeholder="Nouvelle catégorie" />
<button class="btn btn-important">Sauvegarder</button>
</form>
</div>