{% extends "admin/base_site.html" %} {% load i18n %} {% block title %}Push Forms to Remote | {{ site_title|default:_('Django site admin') }}{% endblock %} {% block breadcrumbs %}
{% endblock %} {% block content %}{{ error }}
{% endif %} {# ── Step 1: Results ───────────────────────────────────────────────────── #} {% if step == 1 %}Forms pushed successfully to {{ remote_name }}.
{% with r=push_result %}Created: {{ r.created }} | Updated: {{ r.updated }} | Skipped: {{ r.skipped }}
{% if r.results %}| Slug | Name | Action |
|---|---|---|
{{ row.slug }} |
{{ row.name }} | {% if row.action == "created" %}✓ Created {% elif row.action == "updated" %}↻ Updated {% else %}— Skipped{% endif %} |
| Slug | Name | Category |
|---|---|---|
{{ form.slug }} |
{{ form.name }} | {{ form.category|default:"—" }} |
No forms selected. All forms will be pushed.
{% endif %}