<h1 align=center>Volunteer Management</h1>
Welcome to the Volunteer Management System. Here you can keep track of projects and volunteers.
<p><br/>
<br/>
</p>
<h3><?php echo _("Current features include:")?></h3>
</p>
<ul style="margin-left: 1em;">
<li><?=_('Register to Volunteer')?></li>
<li><?=_('Manage Volunteers')?></li>
<li><?=_('Search volunteers')?></li>
<li><?=_('Start and View Projects')?></li>
<li><?=_('Assign Volunteers to Positions Within Projects')?></li>
<li><?=_('Send and receive messages')?></li>
<li><?=_('Generate Reports')?></li>
</ul>
<br/>
{* need to check logged in status because VolunteerView::displayPortal may be accessed outside of VolunterController in VMOSS *}
{if $_SESSION['logged_in']}
<strong>Description of Actions:</strong><br/>
<ul style="margin-left: 1em;">
<li><a href="?mod=vm&act=default&vm_action=display_single&p_uuid={$p_uuid}"><b>View your info page</b></a><br/>View your registration details.</li>
{if $vol_assign}
<li><a href="?mod=vm&act=project&vm_action=display_select_project"><b>Assign to Project</b></a><br>Manage volunteer assignments</li>
{/if}
{if $showAssigned}
<li><a href="?mod=vm&act=volunteer&vm_action=display_list_assigned"><b>Show Assigned</b></a><br/>View all volunteers assigned to projects
{/if}
{if $listVolunteers}
<li><a href="?mod=vm&act=volunteer&vm_action=display_list_all"><b>View All Volunteers</b></a><br/>View all registered volunteers
{/if}
{if $search}
<li><a href="?mod=vm&act=volunteer&vm_action=display_search"><b>Search</b></a><br/>Search for a volunteer
{/if}
{if $add_proj}
<li><a href="?mod=vm&act=project&vm_action=display_add"><b>Add New Project</b></a><br/>Start a new project</li>
{/if}
{if $listMyProjects}
<li><a href="?mod=vm&act=project&vm_action=display_my_list"><b>View My Projects</b></a><br/> View all projects you are currently assigned to
{/if}
{if $listAllProjects}
<li><a href="?mod=vm&act=project"><b>View All Projects</b></a><br/> View all projects being tracked</li>
{/if}
{if $inbox}
<li><a href="?mod=vm&act=volunteer&vm_action=display_custom_report_select"><b>Generate report</b></a><br/>Generate customized report on volunteers and projects</li>
{/if}
{if $outbox}
<li><a href="?mod=vm&act=volunteer&vm_action=display_add"><b>Register to VM</b></a><br>Register yourself in Volunteer Management module</li>
{/if}
{if $sendMessage}
<li><a href="?mod=vm&act=volunteer&vm_action=display_send_message"><b>Send messages</b></a><br/>Send messages to other users</li>
{/if}
</ul>
<h3>Current projects</h3>
{if empty($projects)}
You are not assigned to any project.
{else}
<a href="?mod=vm&act=project&vm_action=display_my_list">Click here</a> to view your projects.
{/if}
<br /><br />
{else}
<br />
If you have already registered, please log in to your left. Otherwise, click the button below to register.
<br /><br />
<input type="button" value="Register to Volunteer" onClick="window.location='index.php?mod=vm&act=volunteer&vm_action=display_add';" />
{/if}
<br />
<br />
<a href="index.php?mod=vm&act=volunteer&vm_action=help">Click here for Help</a>