- menu changes to allow for partners - partner views and forms now in partner_forms.py and partner_views.py - Introduction of services layer - Allow all configuration to handle partner configurations, and adaptation of caching to allow for this
37 lines
1.9 KiB
HTML
37 lines
1.9 KiB
HTML
{% extends 'base.html' %}
|
|
{% from "macros.html" import render_selectable_table, render_pagination, render_field %}
|
|
{% block title %}License Tier Selection{% endblock %}
|
|
{% block content_title %}Select a License Tier{% endblock %}
|
|
{% block content_description %}Select a License Tier to continue{% endblock %}
|
|
{% block content %}
|
|
|
|
<!-- License Tier Selection Form -->
|
|
<form method="POST" action="{{ url_for('entitlements_bp.handle_license_tier_selection') }}" id="licenseTiersForm">
|
|
{{ render_selectable_table(headers=["ID", "Name", "Version", "Start Date", "End Date"], rows=rows, selectable=True, id="licenseTierTable") }}
|
|
<div class="form-group mt-3 d-flex justify-content-between">
|
|
<div>
|
|
{% if current_user.has_role('Super User') %}
|
|
<button type="submit" name="action" value="edit_license_tier" class="btn btn-primary" onclick="return validateTableSelection('licenseTiersForm')">Edit License Tier</button>
|
|
{% endif %}
|
|
{% if current_user.has_role('Super User') or (current_user.has_role('Partner Admin') and can_assign_license) %}
|
|
<button type="submit" name="action" value="create_license_for_tenant" class="btn btn-secondary" onclick="return validateTableSelection('licenseTiersForm')">Create Tenant License</button>
|
|
{% endif %}
|
|
{% if current_user.has_role('Super User') %}
|
|
<button type="submit" name="action" value="associate_license_tier_to_partner" class="btn btn-secondary" onclick="return validateTableSelection('licenseTiersForm')">Associate to Partner</button>
|
|
{% endif %}
|
|
</div>
|
|
{% if current_user.has_role('Super User') %}
|
|
<button type="submit" name="action" value="create_license_tier" class="btn btn-success">Register License Tier</button>
|
|
{% endif %}
|
|
</div>
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
{% block content_footer %}
|
|
{{ render_pagination(pagination, 'user_bp.select_tenant') }}
|
|
{% endblock %}
|
|
|
|
|
|
|