- Created a base mail template - Adapt and improve document API to usage of catalogs and processors - Adapt eveai_sync to new authentication mechanism and usage of catalogs and processors
28 lines
1.4 KiB
HTML
28 lines
1.4 KiB
HTML
{% extends 'base.html' %}
|
|
{% from "macros.html" import render_selectable_table, render_pagination %}
|
|
|
|
{% block title %}View Licenses{% endblock %}
|
|
|
|
{% block content_title %}View Licenses{% endblock %}
|
|
{% block content_description %}View Licenses{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="{{ url_for('entitlements_bp.handle_license_selection') }}" method="POST">
|
|
{{ render_selectable_table(headers=["License ID", "Name", "Start Date", "End Date", "Active"], rows=rows, selectable=True, id="licensesTable") }}
|
|
<!-- <div class="form-group mt-3">-->
|
|
<!-- <button type="submit" name="action" value="edit_user" class="btn btn-primary">Edit Selected User</button>-->
|
|
<!-- <button type="submit" name="action" value="resend_confirmation_email" class="btn btn-secondary">Resend Confirmation Email</button>-->
|
|
<!-- <button type="submit" name="action" value="send_password_reset_email" class="btn btn-secondary">Send Password Reset Email</button>-->
|
|
<!-- <button type="submit" name="action" value="reset_uniquifier" class="btn btn-secondary">Reset Uniquifier</button>-->
|
|
<!-- <!– Additional buttons can be added here for other actions –>-->
|
|
<!-- </div>-->
|
|
</form>
|
|
{% endblock %}
|
|
|
|
{% block content_footer %}
|
|
{{ render_pagination(pagination, 'entitlements_bp.view_licenses') }}
|
|
{% endblock %}
|
|
|
|
{% block scripts %}
|
|
|
|
{% endblock %} |