{% extends "macros.html" %} {% block html %}
| View | Issue Id | Contract | Date Created | Owner | Status | Subject | Supplies | Latest Entry | ||
|---|---|---|---|---|---|---|---|---|---|---|
| Type | Name | Timestamp | Text | |||||||
| {% if market_role_code == 'C' %} View {% elif market_role_code == 'X' %} View {% elif market_role_code == 'M' %} View {% endif %} | {{bundle.issue.id}} | {% if market_role_code == 'C' %} DC {% elif market_role_code == 'X' %} Supplier {% elif market_role_code == 'M' %} MOP {% endif %} | {% if market_role_code == 'C' %} {{bundle.issue.contract.name}} {% elif market_role_code == 'X' %} {{bundle.issue.contract.name}} {% elif market_role_code == 'M' %} {{bundle.issue.contract.name}} {% endif %} | {{bundle.issue.date_created|hh_format}} | {% if bundle.owner %} {{bundle.owner.email_address}} {% endif %} | {% if bundle.issue.is_open %} Open {% else %} Closed {% endif %} | {{bundle.issue.properties['subject']}} |
|
{% if entry %} {{entry.timestamp|hh_format}} {% endif %} |
{% if entry %}
{% set lines = entry.markdown.splitlines() %}
{% if lines|length < 2 %}
{{lines[0]}}
{% else %}
{{lines[0]}}{{''.join(lines[1:])}} |