~ubuntu-archive/ubuntu-archive-scripts/trunk

« back to all changes in this revision

Viewing changes to templates/team-report.html

  • Committer: Steve Langasek
  • Date: 2023-04-03 19:40:08 UTC
  • Revision ID: steve.langasek@canonical.com-20230403194008-2cqlmnhfb65ufcvk
ubuntu-archive-team is https-only

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
      <li {% if not prob.late %}class="not-late"{% endif %}>
31
31
        {% if prob.kind == "regressing-other" %}
32
32
        <b>{{ prob.regressing_package }}</b> blocking
33
 
        <a href="http://ubuntu-archive-team.ubuntu.com/proposed-migration/update_excuses.html#{{ p }}">{{ p }}</a>
 
33
        <a href="https://ubuntu-archive-team.ubuntu.com/proposed-migration/update_excuses.html#{{ p }}">{{ p }}</a>
34
34
        {% else %}
35
 
        <a href="http://ubuntu-archive-team.ubuntu.com/proposed-migration/update_excuses.html#{{ p }}"><b>{{ p }}</b></a>
 
35
        <a href="https://ubuntu-archive-team.ubuntu.com/proposed-migration/update_excuses.html#{{ p }}"><b>{{ p }}</b></a>
36
36
        {% endif %}
37
37
        {% set urlbase = "https://launchpad.net/ubuntu/+source/" + p + "/" %}
38
38
        ({% if d['old-version'] != "-" %}<a href="{{ urlbase }}{{ d["old-version"] }}">{{ d["old-version"] }}{% else %}-{% endif %}</a>
154
154
          {% if d.get('dependencies', {}).get('migrate-after', []) %}
155
155
          <li>Requires 
156
156
          {% for depmigrate in d.get('dependencies', {}).get('migrate-after', []) %}
157
 
          <a href="http://ubuntu-archive-team.ubuntu.com/proposed-migration/update_excuses.html#{{ depmigrate }}">{{ depmigrate }}</a>
 
157
          <a href="https://ubuntu-archive-team.ubuntu.com/proposed-migration/update_excuses.html#{{ depmigrate }}">{{ depmigrate }}</a>
158
158
          {%- if not loop.last %}, {% endif %}
159
159
          {% endfor %}
160
160
          to migrate</li>