- Finish editing of Specialists with overview, agent - task - tool editor
- Split differrent caching mechanisms (types, version tree, config) into different cachers - Improve resource usage on starting components, and correct gevent usage - Refine repopack usage for eveai_app (too large) - Change nginx dockerfile to allow for specialist overviews being served statically
This commit is contained in:
@@ -135,7 +135,7 @@
|
||||
</div>
|
||||
{% endmacro %}
|
||||
|
||||
{% macro render_selectable_table(headers, rows, selectable, id) %}
|
||||
{% macro render_selectable_table(headers, rows, selectable, id, is_component_selector=False) %}
|
||||
<div class="card">
|
||||
<div class="table-responsive">
|
||||
<table class="table align-items-center mb-0" id="{{ id }}">
|
||||
@@ -153,7 +153,16 @@
|
||||
{% for row in rows %}
|
||||
<tr>
|
||||
{% if selectable %}
|
||||
<td><input type="radio" name="selected_row" value="{{ row[0] }}" required></td>
|
||||
<td>
|
||||
<input type="radio"
|
||||
name="selected_row"
|
||||
value="{{ row[0] }}"
|
||||
{% if is_component_selector %}
|
||||
data-component-selector="true"
|
||||
{% else %}
|
||||
required
|
||||
{% endif %}>
|
||||
</td>
|
||||
{% endif %}
|
||||
{% for cell in row %}
|
||||
<td class="{{ cell.class }}">
|
||||
|
||||
Reference in New Issue
Block a user