/**
     * Render a single row of the organizers table
     *
     * @param int $organizer_id
     *
     * @return void
     */
    protected function single_organizer_dropdown($organizer_id)
    {
        ?>
		<tr class="saved_organizer">
			<td style="width:170px"><?php 
        $this->move_handle();
        ?>
<label data-l10n-create-organizer="<?php 
        esc_attr_e(sprintf(__('Create New %s', 'tribe-events-calendar'), $this->tribe->singular_organizer_label));
        ?>
"><?php 
        printf(__('Use Saved %s:', 'tribe-events-calendar'), $this->tribe->singular_organizer_label);
        ?>
</label>
			</td>
			<td><?php 
        $this->tribe->saved_organizers_dropdown($organizer_id, 'organizer[OrganizerID][]');
        $this->edit_organizer_link($organizer_id);
        $this->delete_handle();
        ?>
</td>
		</tr>
	<?php 
    }