30 lines
936 B
HTML
30 lines
936 B
HTML
|
|
{% extends "base.html" %}
|
||
|
|
{% block title %}Dashboard — Target Revenue Control Plane{% endblock %}
|
||
|
|
{% block content %}
|
||
|
|
<wn-page-header>
|
||
|
|
<span slot="title">Phases for {{ session_licensor_id }}</span>
|
||
|
|
</wn-page-header>
|
||
|
|
|
||
|
|
{% if session_rights in ("operator", "admin") %}
|
||
|
|
<p><a href="/phases/new">+ Register a new Phase</a></p>
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
{% if phases %}
|
||
|
|
<table class="wn-plain">
|
||
|
|
<thead><tr><th>Phase</th><th>Milestone Release</th><th>Initial Target</th><th></th></tr></thead>
|
||
|
|
<tbody>
|
||
|
|
{% for phase in phases %}
|
||
|
|
<tr>
|
||
|
|
<td>{{ phase.phase.id }}</td>
|
||
|
|
<td>{{ phase.phase.milestone_release.name }}</td>
|
||
|
|
<td>{{ phase.phase.initial_target.amount }} {{ phase.phase.initial_target.currency }}</td>
|
||
|
|
<td><a href="/phases/{{ phase.phase.id }}">View</a></td>
|
||
|
|
</tr>
|
||
|
|
{% endfor %}
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
{% else %}
|
||
|
|
<wn-empty-state>No Phases registered yet for this tenant.</wn-empty-state>
|
||
|
|
{% endif %}
|
||
|
|
{% endblock %}
|