{% extends "base.html" %} {% load i18n static requirements_extras %} {% block title %}{% trans "Requirements" %}{% endblock %} {% block contents %}
| {% trans "Identifier" %} | {% trans "Title" %} | {% trans "Level" %} | {% trans "Category" %} | {% trans "Status" %} | {% trans "Priority" %} | {% trans "Cases" %} | {% trans "JIRA" %} | {% trans "Updated" %} |
|---|---|---|---|---|---|---|---|---|
| {{ r.identifier }} | {{ r.title }} | {{ r.level.name|default:"—" }} | {{ r.category.name|default:"—" }} | {% status_badge r.status %} | {% priority_badge r.priority %} | {{ r.case_links.all|length }} | {% if r.jira_issue_key %}{{ r.jira_issue_key }}{% else %}—{% endif %} |
{{ r.updated_at|date:"Y-m-d H:i" }} |
{% trans "Create your first requirement or import a CSV to get started." %}
{% trans "New requirement" %} {% trans "Import CSV" %}