{% extends 'layouts/base.html' %} {% set active_menu = 'synchronization' %} {% set page_title = 'Synchronization Issue Overview / ' + sconf.destination_suite.name + ' (from ' + sconf.source.os_name + ' ' + sconf.source.suite_name %} {% block breadcrumbs %} {% endblock %} {% block body_header %}
| Affected Package | Direction | Version in Target | Version in Source | Issue |
|---|---|---|---|---|
| {{issue.package_name}} | {{issue.source_suite}} {{issue.target_suite}} | {{issue.target_version}} | {{issue.source_version}} | {%if issue.kind == SyncIssueKind.MERGE_REQUIRED %} Requires manual merge of downstream changes with source. {% elif issue.kind == SyncIssueKind.MAYBE_CRUFT %} This package is likely cruft and could be removed after manual review. {%if issue.details %}{{issue.details}}{% endif %} {% elif issue.kind == SyncIssueKind.SYNC_FAILED %} This package failed to synchronize. {%if issue.details %}{{issue.details}}{% endif %} {% elif issue.kind == SyncIssueKind.REMOVAL_FAILED %} Unable to remove this package. {{issue.details}} {% else %} Error: {{issue.details}} {% endif %} |