# Overview

- [cnmat:node/add/reservation|Create a new reservation].
- [cnmat:node/3228|How to get access to the reservation system].
- A reservation ensures exclusive availability of a room.
- If a reservation is to be unused please delete it from the calendar to make the time available to others.
- Use of CNMAT facilities is restricted to [cnmat:group/keyholders|Keyholders]. For details, read [cnmat:node/3213|the use policies].
- For more information about CNMAT resources in general, read [cnmat:node/3213|The CNMAT Users Manual].

# Main Room

- Membership required in: [cnmat:group/main_room_users|Main Room Users Group]
- Usage information: [cnmat:node/2774|Main Room Manual]
- Browse nodes at this location: [cnmat:taxonomy/term/681|Main Room]

<?php
$view = views_get_view('reservations_facility');
echo views_build_view('embed', $view, array(1341, date('Y'), date('n'), 'all'), FALSE, NULL);
?>

# Rear Studio

- Membership required in: [cnmat:group/rear_studio_users|Rear Studio Users Group]
- Usage information [cnmat:node/2726|Rear Studio Manual]
- Browse nodes at this location: [cnmat:taxonomy/term/674|Rear Studio]

<?php
$view = views_get_view('reservations_facility');
echo views_build_view('embed', $view, array(1342, date('Y'), date('n'), 'all'), FALSE, NULL);
?>

# Media Studio (aka "Small Studio", "Middle Studio")

- Membership required in: [cnmat:group/media_studio_users|Media Studio Users Group]
- Usage information: [cnmat:node/2775|Media Studio Manual]
- Browse nodes at this location: [cnmat:taxonomy/term/676|Media Studio]

<?php
$view = views_get_view('reservations_facility');
echo views_build_view('embed', $view, array(1343, date('Y'), date('n'), 'all'), FALSE, NULL);
?>

# Activity Calendar

- The activity calendar is for internal events and advisories. Vacation notices, meetings, visitors, deadlines...
- [cnmat:node/add/activity|Create a new activity].

<?php
$view = views_get_view('activities');
echo views_build_view('embed', $view, array(date('Y'), date('n'), 'all'), FALSE, NULL);
?>