public function render_content_to_reset_everything()
    {
        VideoLibrary_DatabaseHelper::reset_external_videos_frame_grabbing_queue();
        $back_a = new HTMLTags_A('Back to the Queue');
        $back_href = $this->get_current_base_url();
        $back_a->set_href($back_href);
        $back_a_str = $back_a->get_as_string();
        echo <<<HTML
<h2>Reset all External Videos in the Frame Grabbing Queue</h2>
<p>
        All videos have been re-queued and will be processed again on 
        the next running of the frame grabbing script.
</p>
<ul>
        <li>
        {$back_a_str}
        </li>
</ul>
HTML;
    }