Files
kabano/public/views/d.blog.edit.html
copilot-swe-agent[bot] 41625ac443 Add header comments to HTML and CSS
Co-authored-by: LeOSW42 <673670+LeOSW42@users.noreply.github.com>
2026-01-24 15:18:15 +00:00

76 lines
2.4 KiB
HTML
Executable File

<!DOCTYPE html>
<!-- Template: d.blog.edit.html -->
<html lang="fr">
<?php include('blocks/d.head.html'); ?>
<body>
<?php include('blocks/d.nav.html'); ?>
<section>
<?php if(isset($new) AND $new==1) { ?>
<form class="form" action="<?=$config['rel_root_folder']?>blog/new" method="post">
<?php }
else { ?>
<form class="form" action="<?=$config['rel_root_folder']?>blog/<?=$blogArticle->permalink?>/edit" method="post">
<?php } ?>
<h1>
<select name="locale" id="locale">
<?php foreach($locales->objs as $locale) { ?>
<option <?=$blogArticle->locale==$locale->name?'selected':''?> value="<?=$locale->name?>"><?=$locale->display_name?></option>
<?php } ?>
</select>
<input type="text" value="<?=$blogArticle->name?>" name="name" id="name" placeholder="Titre">
</h1>
<?php if(isset($error) AND $error=="permalink") { ?>
<p style="color: red;">L'URL sélectionnée est déjà prise.</p>
<?php } ?>
<textarea rows="30" name="content" id="content" placeholder="Contenu de l'article"><?=$blogArticle->content?></textarea>
<?php if(isset($new) AND $new==1) { ?>
<div id="permalink_container">
<label id="permalink_label" for="permalink"><?=$config['web_root_folder']?>blog/</label>
<input type="text" name="permalink" id="permalink" placeholder="URL" required>
</div>
<?php } ?>
<label for="is_commentable">
<input type="checkbox" name="is_commentable" id="is_commentable"
<?php if($blogArticle->is_commentable == 't') { ?>
checked
<?php } ?>
/>
<span>Autoriser les commentaires</span>
</label>
<input name="submit" id="submit" type="submit" value="Envoyer">
</form>
</section>
<script type="text/javascript">
$( "#name" ).keyup(function() {
permalink = $( "#name" ).val();
permalink = permalink.replace(/ /g,'_');
permalink = permalink.toLowerCase();
permalink = permalink.replace(/[^a-z0-9_]/g,'-');
permalink = permalink.replace(/[_-]+$/g,'');
$( "#permalink" ).val(permalink);
});
$( "#name" ).change(function() {
permalink = $( "#name" ).val();
permalink = permalink.replace(/ /g,'_');
permalink = permalink.toLowerCase();
permalink = permalink.replace(/[^a-z0-9_]/g,'-');
permalink = permalink.replace(/[_-]+$/g,'');
$( "#permalink" ).val(permalink);
});
</script>
<?php include('blocks/d.footer.html'); ?>
</body>
</html>