// SPDX-FileCopyrightText: 2021 Harald Eilertsen // // SPDX-License-Identifier: AGPL-3.0-or-later if ( !class_exists( 'GiglogAdmin_AdminPage' ) ) { require_once __DIR__ . '/../../venue.php'; require_once __DIR__ . '/_concerts_table.php'; require_once __DIR__ . '/_edit_concert_form.php'; require_once __DIR__ . '/_new_venue_form.php'; class GiglogAdmin_AdminPage { const STATUS_LABELS = [ '', 'Accred Requested', 'Photo Approved', 'Text Approved', 'Photo and Text Approved', 'Rejected' ]; public static function render_html() : void { $page = new self(); $page->render_page(); } private function render_page() : void { $concerts = new GiglogAdmin_ConcertsTable(); ?>

Giglog Admin

The available slots are marked with the green checkbox. If you click on it, it will be assigned to you and if you no longer wish to cover that concert, click on the red icon and you will be unassigned. A mail should be sent to the admin when this happens, but in order for the accreditation request to be sent, you have to mail live@eternal-terror.com with the template containing concert information. There might be some exceptions, but those are discussed case by case. So whenever you want a concert, assign yourself and send the template no later than 3 weeks before the concert.

Admin will try to keep the concert status updated so that you know what the accreditation status is. You will get personal message if this is really close to the concert date.

render() ?>

Form to create/edit concerts and venues

render() . $venue_form->render(); ?>
alert("You are missing a value, venue was not created"); '; } else { GiglogAdmin_Venue::create($_POST['venuename'],$_POST['venuecity']); echo ''; } } } } }