{% extends "base.html" %} {% block title %}doc3gpp ยท spec {{ spec.spec_id }}{% endblock %} {% block content %}

{{ spec.type or '' }} {{ spec.spec_id }} : {{ spec.title or '' }}

{% if spec.tsg %}TSG {{ spec.tsg }}{% endif %}

{% if spec.status %}
Status
{{ spec.status }}
{% endif %} {% if spec.radio_tech %}
Radio tech
{{ spec.radio_tech }}
{% endif %} {% if spec.initial_release %}
Initial release
{{ spec.initial_release }}
{% endif %} {% if not no_wis_crs and spec.wis %}
WIs
{{ spec.wis | wrap_csv(150) }}
{% endif %} {% if spec.rapporteurs %}
Rapporteurs
{{ spec.rapporteurs }}
{% endif %} {% if spec.last_synced_at %}
Last synced
{{ spec.last_synced_at | dt_short }} UTC
{% endif %}

Versions

{% if versions %} {% if not no_wis_crs %}{% endif %} {% for v in versions %} {% set cr_count = v.crs.split(',') | length if v.crs else 0 %} {% if not no_wis_crs %} {% endif %} {% endfor %}
Version Release Upload date MeetingCRsZIP PDF
{{ v.version }} {{ v.release or '-' }} {{ v.upload_date.isoformat() if v.upload_date else '-' }} {% if v.meeting_id %} {{ v.meeting_name or v.meeting_id }} {% else %} {{ v.meeting_name or '-' }} {% endif %} {% if v.crs %} {{ cr_count }} {% else %} - {% endif %} {% if v.ftp_url %}open{% else %}-{% endif %} {% if v.pdf_url %}open{% else %}-{% endif %}
{% include "partials/pagination.html" %} {% else %}

No versions stored for this spec.

{% endif %} {% endblock %}