diff --git a/cod_community/cod_community.features.inc b/cod_community/cod_community.features.inc
index 5afca9f..218c985 100644
--- a/cod_community/cod_community.features.inc
+++ b/cod_community/cod_community.features.inc
@@ -1,10 +1,15 @@
 <?php
+/**
+ * @file
+ * cod_community.features.inc
+ */
 
 /**
  * Implementation of hook_views_api().
  */
 function cod_community_views_api() {
-  return array(
-    'api' => '2',
-  );
+  list($module, $api) = func_get_args();
+  if ($module == "views" && $api == "views_default") {
+    return array("version" => 3.0);
+  }
 }
diff --git a/cod_community/cod_community.features.menu_links.inc b/cod_community/cod_community.features.menu_links.inc
deleted file mode 100644
index 2984bb9..0000000
--- a/cod_community/cod_community.features.menu_links.inc
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-/**
- * Implementation of hook_menu_default_menu_links().
- */
-function cod_community_menu_default_menu_links() {
-  $menu_links = array();
-
-  // Exported menu link: primary-links:community
-  $menu_links['primary-links:community'] = array(
-    'menu_name' => 'primary-links',
-    'link_path' => 'community',
-    'router_path' => 'community',
-    'link_title' => 'Community',
-    'options' => array(
-      'attributes' => array(
-        'title' => 'Connect with attendees',
-      ),
-    ),
-    'module' => 'system',
-    'hidden' => '0',
-    'external' => '0',
-    'has_children' => '1',
-    'expanded' => '1',
-    'weight' => '0',
-  );
-  // Translatables
-  // Included for use with string extractors like potx.
-  t('Community');
-
-
-  return $menu_links;
-}
diff --git a/cod_community/cod_community.features.user_permission.inc b/cod_community/cod_community.features.user_permission.inc
index 5992a84..6d26d8c 100644
--- a/cod_community/cod_community.features.user_permission.inc
+++ b/cod_community/cod_community.features.user_permission.inc
@@ -1,4 +1,8 @@
 <?php
+/**
+ * @file
+ * cod_community.features.user_permission.inc
+ */
 
 /**
  * Implementation of hook_user_default_permissions().
@@ -6,12 +10,10 @@
 function cod_community_user_default_permissions() {
   $permissions = array();
 
-  // Exported permission: administer site-wide contact form
-  $permissions['administer site-wide contact form'] = array(
-    'name' => 'administer site-wide contact form',
-    'roles' => array(
-      '0' => 'site administrator',
-    ),
+  // Exported permission: access site-wide contact form
+  $permissions['access site-wide contact form'] = array(
+    'name' => 'access site-wide contact form',
+    'roles' => array(),
   );
 
   return $permissions;
diff --git a/cod_community/cod_community.info b/cod_community/cod_community.info
index d68d9bc..22f4edc 100644
--- a/cod_community/cod_community.info
+++ b/cod_community/cod_community.info
@@ -1,17 +1,12 @@
-core = "6.x"
-dependencies[] = "cod_base"
+core = "7.x"
 dependencies[] = "contact"
 dependencies[] = "features"
-dependencies[] = "menu"
-dependencies[] = "profile"
-dependencies[] = "signup"
 dependencies[] = "views"
 description = "Facilitates interaction between the website's users."
-features[menu_links][] = "primary-links:community"
-features[user_permission][] = "administer site-wide contact form"
-features[views][] = "attendees"
-features[views_api][] = "api:2"
+features[ctools][] = "views:views_default:3.0"
+features[user_permission][] = "access site-wide contact form"
+features[views_view][] = "attendees"
 name = "COD Community"
-package = "COD"
+package = "Features"
 project = "cod_community"
-version = "6.x-1.0-alpha3"
+version = "7.x-1.0-alpha1"
diff --git a/cod_community/cod_community.module b/cod_community/cod_community.module
index 194d9aa..757f95a 100644
--- a/cod_community/cod_community.module
+++ b/cod_community/cod_community.module
@@ -1,3 +1,7 @@
 <?php
+/**
+ * @file
+ * Code for the COD Community feature.
+ */
 
 include_once('cod_community.features.inc');
diff --git a/cod_community/cod_community.views_default.inc b/cod_community/cod_community.views_default.inc
index cd88a81..a31e7aa 100644
--- a/cod_community/cod_community.views_default.inc
+++ b/cod_community/cod_community.views_default.inc
@@ -1,565 +1,572 @@
 <?php
+/**
+ * @file
+ * cod_community.views_default.inc
+ */
 
 /**
  * Implementation of hook_views_default_views().
  */
 function cod_community_views_default_views() {
-  $views = array();
+  $export = array();
 
-  // Exported view: attendees
   $view = new view;
   $view->name = 'attendees';
-  $view->description = 'View of users that have signed up and are attendees';
-  $view->tag = '';
-  $view->view_php = '';
+  $view->description = '';
+  $view->tag = 'default';
   $view->base_table = 'users';
-  $view->is_cacheable = FALSE;
-  $view->api_version = 2;
+  $view->human_name = 'Attendees';
+  $view->core = 7;
+  $view->api_version = '3.0-alpha1';
   $view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
-  $handler = $view->new_display('default', 'Defaults', 'default');
-  $handler->override_option('relationships', array(
-    'uid' => array(
-      'label' => 'Signup user',
-      'required' => 1,
-      'id' => 'uid',
-      'table' => 'signup_log',
-      'field' => 'uid',
-      'relationship' => 'none',
-      'override' => array(
-        'button' => 'Override',
-      ),
-    ),
-  ));
-  $handler->override_option('fields', array(
+
+  /* Display: Master */
+  $handler = $view->new_display('default', 'Master', 'default');
+  $handler->display->display_options['title'] = 'Community';
+  $handler->display->display_options['use_more'] = TRUE;
+  $handler->display->display_options['use_more_text'] = 'All Attendees';
+  $handler->display->display_options['access']['type'] = 'perm';
+  $handler->display->display_options['access']['perm'] = 'access user profiles';
+  $handler->display->display_options['cache']['type'] = 'none';
+  $handler->display->display_options['query']['type'] = 'views_query';
+  $handler->display->display_options['exposed_form']['type'] = 'basic';
+  $handler->display->display_options['pager']['type'] = 'full';
+  $handler->display->display_options['pager']['options']['items_per_page'] = '100';
+  $handler->display->display_options['style_plugin'] = 'table';
+  $handler->display->display_options['style_options']['columns'] = array(
+    'name' => 'name',
+    'picture' => 'field_profile_last',
+    'field_profile_first' => 'field_profile_last',
+    'field_profile_last' => 'field_profile_last',
+    'field_profile_org' => 'field_profile_org',
+    'field_profile_interests' => 'field_profile_interests',
+    'field_profile_org_1' => 'field_profile_org_1',
+  );
+  $handler->display->display_options['style_options']['default'] = '-1';
+  $handler->display->display_options['style_options']['info'] = array(
     'name' => array(
-      'label' => 'Name',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 0,
-      'overwrite_anonymous' => 0,
-      'anonymous_text' => '',
-      'exclude' => 1,
-      'id' => 'name',
-      'table' => 'users',
-      'field' => 'name',
-      'relationship' => 'none',
-    ),
-    'value_4' => array(
-      'label' => 'Name',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 1,
-      'exclude' => 0,
-      'id' => 'value_4',
-      'table' => 'profile_values_profile_first',
-      'field' => 'value',
-      'relationship' => 'none',
-    ),
-    'value_5' => array(
-      'label' => 'Name',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '[value_4] [value_5]',
-        'make_link' => 0,
-        'path' => 'users/[name]',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 1,
-      'exclude' => 0,
-      'id' => 'value_5',
-      'table' => 'profile_values_profile_last',
-      'field' => 'value',
-      'relationship' => 'none',
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
     'picture' => array(
-      'label' => '',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'exclude' => 0,
-      'id' => 'picture',
-      'table' => 'users',
-      'field' => 'picture',
-      'relationship' => 'none',
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value_1' => array(
-      'label' => 'Job title',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 1,
-      'exclude' => 0,
-      'id' => 'value_1',
-      'table' => 'profile_values_profile_job_title',
-      'field' => 'value',
-      'relationship' => 'none',
+    'field_profile_first' => array(
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value_3' => array(
-      'label' => 'Organization',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 0,
-      'exclude' => 0,
-      'id' => 'value_3',
-      'table' => 'profile_values_profile_org',
-      'field' => 'value',
-      'relationship' => 'none',
+    'field_profile_last' => array(
+      'sortable' => 1,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value' => array(
-      'label' => 'Interests',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'type' => 'separator',
-      'separator' => ', ',
-      'exclude' => 0,
-      'id' => 'value',
-      'table' => 'profile_values_profile_interests',
-      'field' => 'value',
-      'relationship' => 'none',
+    'field_profile_org' => array(
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-  ));
-  $handler->override_option('filters', array(
-    'value_4' => array(
-      'operator' => '=',
-      'value' => '',
-      'group' => '0',
-      'exposed' => TRUE,
-      'expose' => array(
-        'use_operator' => 0,
-        'operator' => 'value_4_op',
-        'identifier' => 'value_4',
-        'label' => 'First name',
-        'optional' => 1,
-        'remember' => 0,
-      ),
-      'case' => 0,
-      'id' => 'value_4',
-      'table' => 'profile_values_profile_first',
-      'field' => 'value',
-      'relationship' => 'none',
+    'field_profile_interests' => array(
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value_5' => array(
-      'operator' => '=',
-      'value' => '',
-      'group' => '0',
-      'exposed' => TRUE,
-      'expose' => array(
-        'use_operator' => 0,
-        'operator' => 'value_5_op',
-        'identifier' => 'value_5',
-        'label' => 'Last name',
-        'optional' => 1,
-        'remember' => 0,
-      ),
-      'case' => 0,
-      'id' => 'value_5',
-      'table' => 'profile_values_profile_last',
-      'field' => 'value',
-      'relationship' => 'none',
+    'field_profile_org_1' => array(
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value_1' => array(
-      'operator' => 'contains',
-      'value' => '',
-      'group' => '0',
-      'exposed' => TRUE,
-      'expose' => array(
-        'use_operator' => 0,
-        'operator' => 'value_1_op',
-        'identifier' => 'job_title',
-        'label' => 'Job title',
-        'optional' => 1,
-        'remember' => 0,
-      ),
-      'case' => 0,
-      'id' => 'value_1',
-      'table' => 'profile_values_profile_job_title',
-      'field' => 'value',
-      'relationship' => 'none',
-    ),
-    'value_3' => array(
-      'operator' => '=',
-      'value' => '',
-      'group' => '0',
-      'exposed' => TRUE,
-      'expose' => array(
-        'use_operator' => 0,
-        'operator' => 'value_3_op',
-        'identifier' => 'organization',
-        'label' => 'Organization',
-        'optional' => 1,
-        'remember' => 0,
-      ),
-      'case' => 1,
-      'id' => 'value_3',
-      'table' => 'profile_values_profile_org',
-      'field' => 'value',
-      'relationship' => 'none',
-    ),
-    'value' => array(
-      'operator' => '=',
-      'value' => '',
-      'group' => '0',
-      'exposed' => TRUE,
-      'expose' => array(
-        'use_operator' => 0,
-        'operator' => 'value_op',
-        'identifier' => 'interests',
-        'label' => 'Interests',
-        'optional' => 1,
-        'remember' => 0,
-      ),
-      'case' => 1,
-      'id' => 'value',
-      'table' => 'profile_values_profile_interests',
-      'field' => 'value',
-      'relationship' => 'none',
+  );
+  $handler->display->display_options['style_options']['override'] = 1;
+  $handler->display->display_options['style_options']['sticky'] = 0;
+  $handler->display->display_options['style_options']['empty_table'] = 0;
+  /* No results behavior: Global: Text area */
+  $handler->display->display_options['empty']['area']['id'] = 'area';
+  $handler->display->display_options['empty']['area']['table'] = 'views';
+  $handler->display->display_options['empty']['area']['field'] = 'area';
+  $handler->display->display_options['empty']['area']['empty'] = FALSE;
+  $handler->display->display_options['empty']['area']['content'] = 'No one has signed up for this event. Attendees will appear as they sign up.';
+  /* Relationship: Signup: User */
+  $handler->display->display_options['relationships']['uid']['id'] = 'uid';
+  $handler->display->display_options['relationships']['uid']['table'] = 'signup_log';
+  $handler->display->display_options['relationships']['uid']['field'] = 'uid';
+  $handler->display->display_options['relationships']['uid']['required'] = 0;
+  /* Field: User: Picture */
+  $handler->display->display_options['fields']['picture']['id'] = 'picture';
+  $handler->display->display_options['fields']['picture']['table'] = 'users';
+  $handler->display->display_options['fields']['picture']['field'] = 'picture';
+  $handler->display->display_options['fields']['picture']['label'] = '';
+  $handler->display->display_options['fields']['picture']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['picture']['element_label_colon'] = 0;
+  $handler->display->display_options['fields']['picture']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['picture']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['picture']['empty_zero'] = 0;
+  /* Field: User: First name */
+  $handler->display->display_options['fields']['field_profile_first']['id'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['table'] = 'field_data_field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['field'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['field_api_classes'] = 0;
+  /* Field: User: Last name */
+  $handler->display->display_options['fields']['field_profile_last']['id'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['table'] = 'field_data_field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['field'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['field_api_classes'] = 0;
+  /* Field: User: Organization */
+  $handler->display->display_options['fields']['field_profile_org']['id'] = 'field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['table'] = 'field_data_field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['field'] = 'field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['field_api_classes'] = 0;
+  /* Field: User: Interests */
+  $handler->display->display_options['fields']['field_profile_interests']['id'] = 'field_profile_interests';
+  $handler->display->display_options['fields']['field_profile_interests']['table'] = 'field_data_field_profile_interests';
+  $handler->display->display_options['fields']['field_profile_interests']['field'] = 'field_profile_interests';
+  /* Field: User: Name */
+  $handler->display->display_options['fields']['name']['id'] = 'name';
+  $handler->display->display_options['fields']['name']['table'] = 'users';
+  $handler->display->display_options['fields']['name']['field'] = 'name';
+  /* Field: User: Organization */
+  $handler->display->display_options['fields']['field_profile_org_1']['id'] = 'field_profile_org_1';
+  $handler->display->display_options['fields']['field_profile_org_1']['table'] = 'field_data_field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org_1']['field'] = 'field_profile_org';
+  /* Filter criterion: Fields: First name (field_profile_first) - value */
+  $handler->display->display_options['filters']['field_profile_first_value']['id'] = 'field_profile_first_value';
+  $handler->display->display_options['filters']['field_profile_first_value']['table'] = 'field_data_field_profile_first';
+  $handler->display->display_options['filters']['field_profile_first_value']['field'] = 'field_profile_first_value';
+  $handler->display->display_options['filters']['field_profile_first_value']['exposed'] = TRUE;
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['operator_id'] = 'field_profile_first_value_op';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['label'] = 'Fields: First name (field_profile_first) - value';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['use_operator'] = FALSE;
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['operator'] = 'field_profile_first_value_op';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['identifier'] = 'field_profile_first_value';
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['required'] = FALSE;
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['remember'] = FALSE;
+  $handler->display->display_options['filters']['field_profile_first_value']['expose']['multiple'] = FALSE;
+  /* Filter criterion: Fields: Last name (field_profile_last) - value */
+  $handler->display->display_options['filters']['field_profile_last_value']['id'] = 'field_profile_last_value';
+  $handler->display->display_options['filters']['field_profile_last_value']['table'] = 'field_data_field_profile_last';
+  $handler->display->display_options['filters']['field_profile_last_value']['field'] = 'field_profile_last_value';
+  /* Filter criterion: Signup: User: Attended */
+  $handler->display->display_options['filters']['attended']['id'] = 'attended';
+  $handler->display->display_options['filters']['attended']['table'] = 'signup_log';
+  $handler->display->display_options['filters']['attended']['field'] = 'attended';
+  $handler->display->display_options['filters']['attended']['relationship'] = 'uid';
+  $handler->display->display_options['filters']['attended']['value'] = '1';
+
+  /* Display: Community Page (Main) */
+  $handler = $view->new_display('page', 'Community Page (Main)', 'page');
+  $handler->display->display_options['defaults']['style_plugin'] = FALSE;
+  $handler->display->display_options['style_plugin'] = 'table';
+  $handler->display->display_options['style_options']['columns'] = array(
+    'name' => 'name',
+    'picture' => 'field_profile_last',
+    'field_profile_first' => 'field_profile_last',
+    'field_profile_last' => 'field_profile_last',
+    'field_profile_job_title' => 'field_profile_job_title',
+    'field_profile_org_1' => 'field_profile_org_1',
+    'field_profile_interests' => 'field_profile_interests',
+  );
+  $handler->display->display_options['style_options']['default'] = 'field_profile_last';
+  $handler->display->display_options['style_options']['info'] = array(
+    'name' => array(
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-  ));
-  $handler->override_option('access', array(
-    'type' => 'none',
-  ));
-  $handler->override_option('cache', array(
-    'type' => 'none',
-  ));
-  $handler->override_option('title', 'Community');
-  $handler->override_option('empty', 'No one has signed up for this event. Attendees will appear as they sign up.');
-  $handler->override_option('empty_format', '1');
-  $handler->override_option('items_per_page', 100);
-  $handler->override_option('style_plugin', 'table');
-  $handler->override_option('style_options', array(
-    'grouping' => '',
-    'override' => 0,
-    'sticky' => 1,
-    'order' => 'asc',
-    'columns' => array(
-      'value_4' => 'value_4',
-      'value_5' => 'value_4',
-      'picture' => 'value_4',
-      'value_3' => 'value_3',
-      'value_2' => 'value_2',
-      'value_1' => 'value_1',
-      'value' => 'value',
+    'picture' => array(
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'info' => array(
-      'value_4' => array(
-        'sortable' => 1,
-        'separator' => ' ',
-      ),
-      'value_5' => array(
-        'sortable' => 0,
-        'separator' => '',
-      ),
-      'picture' => array(
-        'sortable' => 0,
-        'separator' => '',
-      ),
-      'value_3' => array(
-        'sortable' => 1,
-        'separator' => '',
-      ),
-      'value_2' => array(
-        'sortable' => 1,
-        'separator' => '',
-      ),
-      'value_1' => array(
-        'sortable' => 1,
-        'separator' => '',
-      ),
-      'value' => array(
-        'separator' => '',
-      ),
+    'field_profile_first' => array(
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'default' => 'value_4',
-  ));
-  $handler = $view->new_display('page', 'Community Page (primary)', 'page_1');
-  $handler->override_option('path', 'community');
-  $handler->override_option('menu', array(
-    'type' => 'normal',
-    'title' => 'Community',
-    'description' => 'Connect with attendees',
-    'weight' => '0',
-    'name' => 'primary-links',
-  ));
-  $handler->override_option('tab_options', array(
-    'type' => 'none',
-    'title' => '',
-    'description' => '',
-    'weight' => 0,
-    'name' => 'navigation',
-  ));
-  $handler = $view->new_display('block', 'Block', 'block_1');
-  $handler->override_option('fields', array(
-    'picture' => array(
-      'label' => '',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 1,
-      'empty_zero' => 0,
-      'exclude' => 0,
-      'id' => 'picture',
-      'table' => 'users',
-      'field' => 'picture',
-      'relationship' => 'none',
-      'override' => array(
-        'button' => 'Use default',
-      ),
+    'field_profile_last' => array(
+      'sortable' => 1,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value' => array(
-      'label' => '',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 0,
-      'exclude' => 1,
-      'id' => 'value',
-      'table' => 'profile_values_profile_first',
-      'field' => 'value',
-      'override' => array(
-        'button' => 'Use default',
-      ),
-      'relationship' => 'none',
+    'field_profile_job_title' => array(
+      'sortable' => 1,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value_1' => array(
-      'label' => '',
-      'alter' => array(
-        'alter_text' => 1,
-        'text' => '[value] [value_1]',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 1,
-      'exclude' => 0,
-      'id' => 'value_1',
-      'table' => 'profile_values_profile_last',
-      'field' => 'value',
-      'override' => array(
-        'button' => 'Use default',
-      ),
-      'relationship' => 'none',
+    'field_profile_org_1' => array(
+      'sortable' => 1,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-    'value_2' => array(
-      'label' => '',
-      'alter' => array(
-        'alter_text' => 0,
-        'text' => '',
-        'make_link' => 0,
-        'path' => '',
-        'link_class' => '',
-        'alt' => '',
-        'prefix' => '',
-        'suffix' => '',
-        'target' => '',
-        'help' => '',
-        'trim' => 0,
-        'max_length' => '',
-        'word_boundary' => 1,
-        'ellipsis' => 1,
-        'html' => 0,
-        'strip_tags' => 0,
-      ),
-      'empty' => '',
-      'hide_empty' => 0,
-      'empty_zero' => 0,
-      'link_to_user' => 1,
-      'exclude' => 0,
-      'id' => 'value_2',
-      'table' => 'profile_values_profile_org',
-      'field' => 'value',
-      'override' => array(
-        'button' => 'Use default',
-      ),
-      'relationship' => 'none',
+    'field_profile_interests' => array(
+      'sortable' => 0,
+      'default_sort_order' => 'asc',
+      'align' => '',
+      'separator' => '',
     ),
-  ));
-  $handler->override_option('filters', array());
-  $handler->override_option('items_per_page', 12);
-  $handler->override_option('use_more', 1);
-  $handler->override_option('use_more_always', 0);
-  $handler->override_option('use_more_text', 'All Attendees');
-  $handler->override_option('style_plugin', 'default');
-  $handler->override_option('style_options', array(
-    'grouping' => '',
-  ));
-  $handler->override_option('block_description', 'Attendee block');
-  $handler->override_option('block_caching', -1);
+  );
+  $handler->display->display_options['style_options']['override'] = 1;
+  $handler->display->display_options['style_options']['sticky'] = 0;
+  $handler->display->display_options['style_options']['empty_table'] = 0;
+  $handler->display->display_options['defaults']['style_options'] = FALSE;
+  $handler->display->display_options['defaults']['row_plugin'] = FALSE;
+  $handler->display->display_options['defaults']['row_options'] = FALSE;
+  $handler->display->display_options['defaults']['fields'] = FALSE;
+  /* Field: User: Name */
+  $handler->display->display_options['fields']['name']['id'] = 'name';
+  $handler->display->display_options['fields']['name']['table'] = 'users';
+  $handler->display->display_options['fields']['name']['field'] = 'name';
+  $handler->display->display_options['fields']['name']['relationship'] = 'uid';
+  $handler->display->display_options['fields']['name']['label'] = '';
+  $handler->display->display_options['fields']['name']['exclude'] = TRUE;
+  $handler->display->display_options['fields']['name']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['name']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['name']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['name']['element_label_colon'] = 0;
+  $handler->display->display_options['fields']['name']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['name']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['name']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['name']['link_to_user'] = 0;
+  $handler->display->display_options['fields']['name']['overwrite_anonymous'] = 0;
+  /* Field: User: Picture */
+  $handler->display->display_options['fields']['picture']['id'] = 'picture';
+  $handler->display->display_options['fields']['picture']['table'] = 'users';
+  $handler->display->display_options['fields']['picture']['field'] = 'picture';
+  $handler->display->display_options['fields']['picture']['label'] = '';
+  $handler->display->display_options['fields']['picture']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['picture']['element_label_colon'] = 0;
+  $handler->display->display_options['fields']['picture']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['picture']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['picture']['empty_zero'] = 0;
+  /* Field: User: First name */
+  $handler->display->display_options['fields']['field_profile_first']['id'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['table'] = 'field_data_field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['field'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['field_api_classes'] = 0;
+  /* Field: User: Last name */
+  $handler->display->display_options['fields']['field_profile_last']['id'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['table'] = 'field_data_field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['field'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['field_api_classes'] = 0;
+  /* Field: User: Job title */
+  $handler->display->display_options['fields']['field_profile_job_title']['id'] = 'field_profile_job_title';
+  $handler->display->display_options['fields']['field_profile_job_title']['table'] = 'field_data_field_profile_job_title';
+  $handler->display->display_options['fields']['field_profile_job_title']['field'] = 'field_profile_job_title';
+  $handler->display->display_options['fields']['field_profile_job_title']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_job_title']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_job_title']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_job_title']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_job_title']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_job_title']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_job_title']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_job_title']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_job_title']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_job_title']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_job_title']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_job_title']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_job_title']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_job_title']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_job_title']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_job_title']['field_api_classes'] = 0;
+  /* Field: User: Organization */
+  $handler->display->display_options['fields']['field_profile_org_1']['id'] = 'field_profile_org_1';
+  $handler->display->display_options['fields']['field_profile_org_1']['table'] = 'field_data_field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org_1']['field'] = 'field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_org_1']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_org_1']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_org_1']['field_api_classes'] = 0;
+  /* Field: User: Interests */
+  $handler->display->display_options['fields']['field_profile_interests']['id'] = 'field_profile_interests';
+  $handler->display->display_options['fields']['field_profile_interests']['table'] = 'field_data_field_profile_interests';
+  $handler->display->display_options['fields']['field_profile_interests']['field'] = 'field_profile_interests';
+  $handler->display->display_options['path'] = 'community';
+  $handler->display->display_options['menu']['type'] = 'normal';
+  $handler->display->display_options['menu']['title'] = 'Community';
+  $handler->display->display_options['menu']['name'] = 'main-menu';
 
-  $views[$view->name] = $view;
+  /* Display: Block */
+  $handler = $view->new_display('block', 'Block', 'block');
+  $handler->display->display_options['defaults']['use_more'] = FALSE;
+  $handler->display->display_options['use_more'] = TRUE;
+  $handler->display->display_options['use_more_text'] = 'All Attendees';
+  $handler->display->display_options['defaults']['pager'] = FALSE;
+  $handler->display->display_options['pager']['type'] = 'full';
+  $handler->display->display_options['pager']['options']['items_per_page'] = '12';
+  $handler->display->display_options['defaults']['style_plugin'] = FALSE;
+  $handler->display->display_options['style_plugin'] = 'default';
+  $handler->display->display_options['defaults']['style_options'] = FALSE;
+  $handler->display->display_options['defaults']['row_plugin'] = FALSE;
+  $handler->display->display_options['row_plugin'] = 'fields';
+  $handler->display->display_options['defaults']['row_options'] = FALSE;
+  $handler->display->display_options['defaults']['fields'] = FALSE;
+  /* Field: User: Name */
+  $handler->display->display_options['fields']['name']['id'] = 'name';
+  $handler->display->display_options['fields']['name']['table'] = 'users';
+  $handler->display->display_options['fields']['name']['field'] = 'name';
+  $handler->display->display_options['fields']['name']['relationship'] = 'uid';
+  $handler->display->display_options['fields']['name']['label'] = '';
+  $handler->display->display_options['fields']['name']['exclude'] = TRUE;
+  $handler->display->display_options['fields']['name']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['name']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['name']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['name']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['name']['element_label_colon'] = 0;
+  $handler->display->display_options['fields']['name']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['name']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['name']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['name']['link_to_user'] = 1;
+  $handler->display->display_options['fields']['name']['overwrite_anonymous'] = 0;
+  /* Field: User: Picture */
+  $handler->display->display_options['fields']['picture']['id'] = 'picture';
+  $handler->display->display_options['fields']['picture']['table'] = 'users';
+  $handler->display->display_options['fields']['picture']['field'] = 'picture';
+  $handler->display->display_options['fields']['picture']['label'] = '';
+  $handler->display->display_options['fields']['picture']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['picture']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['picture']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['picture']['element_label_colon'] = 0;
+  $handler->display->display_options['fields']['picture']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['picture']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['picture']['empty_zero'] = 0;
+  /* Field: User: First name */
+  $handler->display->display_options['fields']['field_profile_first']['id'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['table'] = 'field_data_field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['field'] = 'field_profile_first';
+  $handler->display->display_options['fields']['field_profile_first']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_first']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_first']['field_api_classes'] = 0;
+  /* Field: User: Last name */
+  $handler->display->display_options['fields']['field_profile_last']['id'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['table'] = 'field_data_field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['field'] = 'field_profile_last';
+  $handler->display->display_options['fields']['field_profile_last']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_last']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_last']['field_api_classes'] = 0;
+  /* Field: User: Organization */
+  $handler->display->display_options['fields']['field_profile_org']['id'] = 'field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['table'] = 'field_data_field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['field'] = 'field_profile_org';
+  $handler->display->display_options['fields']['field_profile_org']['alter']['alter_text'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['make_link'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['absolute'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['external'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['replace_spaces'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['trim'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['nl2br'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['word_boundary'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['ellipsis'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['strip_tags'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['alter']['html'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['element_label_colon'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['element_default_classes'] = 1;
+  $handler->display->display_options['fields']['field_profile_org']['hide_empty'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['empty_zero'] = 0;
+  $handler->display->display_options['fields']['field_profile_org']['field_api_classes'] = 0;
+  $handler->display->display_options['defaults']['filters'] = FALSE;
+  /* Filter criterion: Signup: User: Attended */
+  $handler->display->display_options['filters']['attended']['id'] = 'attended';
+  $handler->display->display_options['filters']['attended']['table'] = 'signup_log';
+  $handler->display->display_options['filters']['attended']['field'] = 'attended';
+  $handler->display->display_options['filters']['attended']['relationship'] = 'uid';
+  $handler->display->display_options['filters']['attended']['value'] = '1';
+  $translatables['attendees'] = array(
+    t('Master'),
+    t('Community'),
+    t('All Attendees'),
+    t('Apply'),
+    t('Reset'),
+    t('Sort by'),
+    t('Asc'),
+    t('Desc'),
+    t('Items per page'),
+    t('- All -'),
+    t('Offset'),
+    t('No one has signed up for this event. Attendees will appear as they sign up.'),
+    t('Signup user'),
+    t('First name'),
+    t('Last name'),
+    t('Organization'),
+    t('Interests'),
+    t('Name'),
+    t('Fields: First name (field_profile_first) - value'),
+    t('Community Page (Main)'),
+    t('more'),
+    t('Job title'),
+    t('Block'),
+  );
+  $export['attendees'] = $view;
 
-  return $views;
+  return $export;
 }
