{% extends "base.html" %} {% set active_page = "blog" %} {% block title %}Edit: {{ draft.title }} — Blog Drafts{% endblock %} {% block content %}

Edit Blog Draft

Metadata

{% if draft.model_used %}

Generation Info

Model {{ draft.model_used }}
Input tokens {{ "{:,}".format(draft.input_tokens or 0) }}
Output tokens {{ "{:,}".format(draft.output_tokens or 0) }}
Cost ${{ "%.4f" | format(draft.cost_usd or 0) }}
{% endif %}
Cancel
{% endblock %}