{% htmlcompress %} <!DOCTYPE html> <html> <head> {{ include("apl_includes/header_meta.twig") }} </head> <body class="hold-transition skin-black sidebar-mini"> <div class="wrapper"> <header class="main-header"> {{ include("apl_includes/header.twig") }} </header> <aside class="main-sidebar"> {{ include("apl_includes/sidebar.twig") }} </aside> <div class="content-wrapper"> <section class="content-header"> <div class="{{ page_message_class }}"> <h4>{{ page_title }}</h4> <p>{{ page_message|striptags("<a><b><br><i><li><strong><u><ul>")|raw }}</p> </div> </section> <section class="content"> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title">{{ page_title }}</h3> </div> <form action="{{ script_filename }}" method="post"> <div class="box-body"> <table class="custom_table table table-bordered table-striped"> <thead> <tr> <th width="10" class="sorting-disabled"><input type="checkbox" class="check-all-rows"></th> <th>API Secret</th> <th>IP Address</th> <th>Add/Edit Products</th> <th>Add/Edit Clients</th> <th>Add/Edit Licenses</th> <th>Edit Installations</th> <th>Search</th> <th>Status</th> </tr> </thead> <tbody> {% for item_array in api_keys_array %} <tr> <td><input type="checkbox" name="api_key_ids_array[]" value="{{ item_array.api_key_id }}"></td> <td><a href="api_keys_edit.php?api_key_id={{ item_array.api_key_id }}">{{ item_array.api_key_secret }}</a></td> <td>{{ item_array.api_key_ip }}</td> <td><span class="{{ item_array.api_key_products_add_formatted.status_class }}">{{ item_array.api_key_products_add_formatted.status_text }}</span> <span class="{{ item_array.api_key_products_edit_formatted.status_class }}">{{ item_array.api_key_products_edit_formatted.status_text }}</span></td> <td><span class="{{ item_array.api_key_clients_add_formatted.status_class }}">{{ item_array.api_key_clients_add_formatted.status_text }}</span> <span class="{{ item_array.api_key_clients_edit_formatted.status_class }}">{{ item_array.api_key_clients_edit_formatted.status_text }}</span></td> <td><span class="{{ item_array.api_key_licenses_add_formatted.status_class }}">{{ item_array.api_key_licenses_add_formatted.status_text }}</span> <span class="{{ item_array.api_key_licenses_edit_formatted.status_class }}">{{ item_array.api_key_licenses_edit_formatted.status_text }}</span></td> <td><span class="{{ item_array.api_key_installations_edit_formatted.status_class }}">{{ item_array.api_key_installations_edit_formatted.status_text }}</span></td> <td><span class="{{ item_array.api_key_search_formatted.status_class }}">{{ item_array.api_key_search_formatted.status_text }}</span></td> <td><span class="{{ item_array.api_key_status_formatted.status_class }}">{{ item_array.api_key_status_formatted.status_text }}</span></td> </tr> {% endfor %} </tbody> <tfoot> <tr> <th width="10" class="sorting-disabled"><input type="checkbox" class="check-all-rows"></th> <th>API Secret</th> <th>IP Address</th> <th>Add/Edit Products</th> <th>Add/Edit Clients</th> <th>Add/Edit Licenses</th> <th>Edit Installations</th> <th>Search</th> <th>Status</th> </tr> </tfoot> </table> </div> <div class="box-footer"> <button type="submit" name="submit_ok" class="btn btn-primary">Submit</button> </div> </form> </div> </section> </div> <footer class="main-footer"> {{ include("apl_includes/footer.twig") }} </footer> </div> {{ include("apl_includes/footer_meta.twig") }} </body> </html> {% endhtmlcompress %}