feat(rewrite): add batch rewrite run, AI tags for WP, and agentur contact detection
This commit is contained in:
parent
da269d08f1
commit
b0f995d5c9
10 changed files with 374 additions and 36 deletions
|
|
@ -170,6 +170,9 @@
|
|||
<textarea name="content_rewritten" rows="14" style="width:100%;">{{ article.content_rewritten or "" }}</textarea>
|
||||
<button type="submit">Rewrite-Text speichern</button>
|
||||
</form>
|
||||
{% if article.meta.generated_tags %}
|
||||
<p><strong>Generierte Tags:</strong> {{ article.meta.generated_tags|join("; ") }}</p>
|
||||
{% endif %}
|
||||
<p class="subtle">Dieser Text wird für den WordPress-Entwurf verwendet, falls vorhanden.</p>
|
||||
</section>
|
||||
|
||||
|
|
|
|||
|
|
@ -102,6 +102,15 @@
|
|||
</form>
|
||||
</section>
|
||||
|
||||
<section class="card">
|
||||
<h2>Rewrite Run (geplante Artikel)</h2>
|
||||
<p class="subtle">Verarbeitet alle Artikel im Status <code>rewrite</code> und setzt sie auf <code>publish</code>.</p>
|
||||
<form method="post" action="/admin/rewrite/run" class="row">
|
||||
<input name="max_jobs" value="10" />
|
||||
<button type="submit">Rewrite Run starten</button>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
<section class="card">
|
||||
<h2>Quellen + Policy</h2>
|
||||
<table>
|
||||
|
|
@ -269,6 +278,9 @@
|
|||
{% if a.summary %}
|
||||
<div><strong>Summary:</strong> {{ a.summary }}</div>
|
||||
{% endif %}
|
||||
{% if a.generated_tags %}
|
||||
<div><strong>Tags:</strong> {{ a.generated_tags|join("; ") }}</div>
|
||||
{% endif %}
|
||||
{% if a.content_raw %}
|
||||
<details>
|
||||
<summary>Volltext anzeigen</summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue