Changeset 32:f41d493f4647


Ignore:
Timestamp:
18/04/10 12:06:20 (3 years ago)
Author:
nicoechaniz <nico@…>
Branch:
default
Message:

added Neutrona Theme

Files:
74 added
10 edited

Legend:

Unmodified
Added
Removed
  • cyclope/core/collections/frontend_views.py

    r23 r32  
    6767        from django.template import Template, Context 
    6868        link_template = Template( 
     69            '{% if has_children %}' 
     70              '<span class="expand_collapse">+</span>\n' 
     71            '{% endif %}' 
    6972            '{% if has_content %}' 
    7073              '<a href="{% url category-root_items_list slug %}" ' 
    71                  'class="{{class}}">{{ name }}</a>' 
    72             '  {% else %} {{ name }}' 
    73             '{% endif %}' 
    74             '{% if has_children %}' 
    75               '<span class="expand_collapse">+</span>' 
     74                 'class="{{class}}"><span>{{ name }}</span></a>' 
     75            '{% else %} {{ name }}' 
    7676            '{% endif %}' 
    7777            ) 
  • cyclope/core/collections/templates/collections/collection_categories_hierarchy.html

    r17 r32  
    22 
    33{% block content %} 
    4  
    5     <style type="text/css"> 
    6  
    7  
    8 </style> 
    94 
    105<script type="text/javascript"> 
  • cyclope/forms.py

    r29 r32  
    164164    def clean(self): 
    165165        data = self.cleaned_data 
    166         if not data['content_type']: 
    167             raise(ValidationError(_(u'Content type can not be empty'))) 
     166        if not data['DELETE']: 
     167            if not data['content_type']: 
     168                raise(ValidationError(_(u'Content type can not be empty'))) 
    168169 
    169         if data['content_type']: 
    170             if (data['content_view'] == '' or not data['content_view']): 
    171                 raise(ValidationError( 
    172                     _(u'You need to select a content view'))) 
    173             if not data['region']: 
    174                 raise(ValidationError(_(u'You need to select a region'))) 
    175             if data['object_id'] == '': 
    176                 data['object_id'] = None 
     170            if data['content_type']: 
     171                if (data['content_view'] == '' or not data['content_view']): 
     172                    raise(ValidationError( 
     173                        _(u'You need to select a content view'))) 
     174                if not data['region']: 
     175                    raise(ValidationError(_(u'You need to select a region'))) 
     176                if data['object_id'] == '': 
     177                    data['object_id'] = None 
    177178 
    178179        return super(RegionViewInlineForm, self).clean() 
  • cyclope/media/themes/potente/css/potente.css

    r30 r32  
    415415  padding: 0 0 0 30px; 
    416416  background:url(../images/css/menuv.png) 0 0 no-repeat; 
    417   line-height: 30px; 
    418417  } 
    419418.collection_categories_hierarchy ul ul li{ 
  • cyclope/models.py

    r30 r32  
    225225    def __unicode__(self): 
    226226        return '%s/%s' % (self.content_type.model, self.content_view) 
     227        #if self.content_type and self.content_view: 
     228        #    return '%s/%s' % (self.content_type.model, self.content_view) 
     229        #else: 
     230        #    return self.region 
    227231 
    228232 
  • cyclope/templates/cyclope/themes/potente/__init__.py

    r30 r32  
    1818        'regions' : { 
    1919            'header': _('header'), 
    20             'sidebar': _('sidebar'), 
     20            'left_sidebar': _('left sidebar'), 
    2121            'before_content': _('before content'), 
    2222            'after_content': _('after content'), 
  • cyclope/templates/cyclope/themes/potente/base.html

    r31 r32  
    6262            <div class="top"></div> 
    6363{%comment%}           {{ left_region|safe }} {%endcomment%} 
    64            {% region 'sidebar' %} 
     64           {% region 'left_sidebar' %} 
    6565 
    6666            <!-- !N FALTA IMPLEMENTAR: 
  • cyclope/utils/__init__.py

    r14 r32  
    1717    req_url = req_url[len(cyclope.settings.CYCLOPE_PREFIX)+1:] 
    1818 
    19     try: 
    20         menu_item = MenuItem.objects.select_related().get(url=req_url) 
    21     except: 
    22         menu_item = None 
     19    if req_url == '': 
     20        menu_item = MenuItem.objects.select_related().get(site_home=True) 
     21    else: 
     22        try: 
     23            menu_item = MenuItem.objects.select_related().get(url=req_url) 
     24        except: 
     25            menu_item = None 
    2326    if menu_item and menu_item.layout: 
    2427        layout = menu_item.layout 
  • cyclope_demo/initial_data.json

    r30 r32  
    1 [{"pk": 14, "model": "contenttypes.contenttype", "fields": {"model": "basecontent", "name": "base content", "app_label": "cyclope"}}, {"pk": 19, "model": "contenttypes.contenttype", "fields": {"model": "category", "name": "category", "app_label": "collections"}}, {"pk": 20, "model": "contenttypes.contenttype", "fields": {"model": "categorymap", "name": "category map", "app_label": "collections"}}, {"pk": 18, "model": "contenttypes.contenttype", "fields": {"model": "collection", "name": "collection", "app_label": "collections"}}, {"pk": 8, "model": "contenttypes.contenttype", "fields": {"model": "comment", "name": "comment", "app_label": "comments"}}, {"pk": 9, "model": "contenttypes.contenttype", "fields": {"model": "commentflag", "name": "comment flag", "app_label": "comments"}}, {"pk": 5, "model": "contenttypes.contenttype", "fields": {"model": "contenttype", "name": "content type", "app_label": "contenttypes"}}, {"pk": 2, "model": "contenttypes.contenttype", "fields": {"model": "group", "name": "group", "app_label": "auth"}}, {"pk": 17, "model": "contenttypes.contenttype", "fields": {"model": "layout", "name": "layout", "app_label": "cyclope"}}, {"pk": 10, "model": "contenttypes.contenttype", "fields": {"model": "logentry", "name": "log entry", "app_label": "admin"}}, {"pk": 12, "model": "contenttypes.contenttype", "fields": {"model": "menu", "name": "menu", "app_label": "cyclope"}}, {"pk": 13, "model": "contenttypes.contenttype", "fields": {"model": "menuitem", "name": "menu item", "app_label": "cyclope"}}, {"pk": 4, "model": "contenttypes.contenttype", "fields": {"model": "message", "name": "message", "app_label": "auth"}}, {"pk": 1, "model": "contenttypes.contenttype", "fields": {"model": "permission", "name": "permission", "app_label": "auth"}}, {"pk": 16, "model": "contenttypes.contenttype", "fields": {"model": "regionview", "name": "region view", "app_label": "cyclope"}}, {"pk": 6, "model": "contenttypes.contenttype", "fields": {"model": "session", "name": "session", "app_label": "sessions"}}, {"pk": 7, "model": "contenttypes.contenttype", "fields": {"model": "site", "name": "site", "app_label": "sites"}}, {"pk": 11, "model": "contenttypes.contenttype", "fields": {"model": "sitesettings", "name": "site settings", "app_label": "cyclope"}}, {"pk": 15, "model": "contenttypes.contenttype", "fields": {"model": "staticpage", "name": "static page", "app_label": "cyclope"}}, {"pk": 3, "model": "contenttypes.contenttype", "fields": {"model": "user", "name": "user", "app_label": "auth"}}, {"pk": "ba9d027ef9a09c2ac77b8a56a60852c5", "model": "sessions.session", "fields": {"expire_date": "2010-04-20 22:47:19", "session_data": "gAJ9cQEoVRJfYXV0aF91c2VyX2JhY2tlbmRxAlUpZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5k\ncy5Nb2RlbEJhY2tlbmRxA1UNX2F1dGhfdXNlcl9pZHEESwF1LmFkMjJiMDkxYjVmNTNmOTkwNmZk\nNDkzNGFhNTU3NjNm\n"}}, {"pk": "b90a46293ee53cc8fb77cb5dbe0d4b53", "model": "sessions.session", "fields": {"expire_date": "2010-04-20 22:59:31", "session_data": "gAJ9cQEuNmM5ZjhjNGFmMmE0YWVlOWE0MmFhYWM4MTNmNWE2MDQ=\n"}}, {"pk": "0110b90c6efd08c58b87d981ecdea782", "model": "sessions.session", "fields": {"expire_date": "2010-04-21 00:24:54", "session_data": "gAJ9cQEoVRJfYXV0aF91c2VyX2JhY2tlbmRxAlUpZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5k\ncy5Nb2RlbEJhY2tlbmRxA1UNX2F1dGhfdXNlcl9pZHEESwF1LmFkMjJiMDkxYjVmNTNmOTkwNmZk\nNDkzNGFhNTU3NjNm\n"}}, {"pk": 1, "model": "sites.site", "fields": {"domain": "cyclope_example.com", "name": "cyclope_example.com"}}, {"pk": 54, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:24:44", "object_repr": "four panes", "object_id": "2", "change_message": "Se agreg\u00f3 region view \"staticpage/detail\".", "user": 1, "content_type": 17}}, {"pk": 53, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:24:25", "object_repr": "four panes", "object_id": "2", "change_message": "Se agreg\u00f3 region view \"staticpage/detail\".", "user": 1, "content_type": 17}}, {"pk": 52, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-15 18:23:12", "object_repr": "y una m\u00e1s", "object_id": "5", "change_message": "", "user": 1, "content_type": 15}}, {"pk": 51, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:22:37", "object_repr": "otra noticia", "object_id": "2", "change_message": "Se agreg\u00f3 mapa de la categoria \"secciones: novedades\".", "user": 1, "content_type": 15}}, {"pk": 50, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:22:30", "object_repr": "otra noticia", "object_id": "2", "change_message": "Modifica name y text.", "user": 1, "content_type": 15}}, {"pk": 49, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:21:53", "object_repr": "four panes", "object_id": "2", "change_message": "Se agreg\u00f3 region view \"staticpage/detail\".", "user": 1, "content_type": 17}}, {"pk": 48, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:21:24", "object_repr": "four panes", "object_id": "2", "change_message": "Se agreg\u00f3 region view \"staticpage/detail\".", "user": 1, "content_type": 17}}, {"pk": 47, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-13 04:29:01", "object_repr": "otro layout", "object_id": "3", "change_message": "Modifica content_type y content_view.", "user": 1, "content_type": 13}}, {"pk": 46, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-13 02:02:06", "object_repr": "default", "object_id": "1", "change_message": "Se modificaron region en region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 45, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-13 02:01:57", "object_repr": "four panes", "object_id": "2", "change_message": "Se modificaron region en region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 44, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-12 21:48:43", "object_repr": "una novedad importante", "object_id": "4", "change_message": "", "user": 1, "content_type": 15}}, {"pk": 43, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-12 21:46:32", "object_repr": "otro layout", "object_id": "3", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 13}}, {"pk": 42, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-12 21:45:52", "object_repr": "otro layout", "object_id": "3", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 13}}, {"pk": 41, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-12 21:45:48", "object_repr": "google", "object_id": "2", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 13}}, {"pk": 40, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-12 21:45:44", "object_repr": "Home", "object_id": "1", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 13}}, {"pk": 39, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:41:15", "object_repr": "Home", "object_id": "1", "change_message": "Modifica text.", "user": 1, "content_type": 15}}, {"pk": 38, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:36:47", "object_repr": "una noticia en varias categor\u00edas", "object_id": "3", "change_message": "Modifica name, summary y text.", "user": 1, "content_type": 15}}, {"pk": 37, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:35:25", "object_repr": "empezamos a probar ...", "object_id": "3", "change_message": "Se agreg\u00f3 category map \"secciones: o por capricho\".", "user": 1, "content_type": 15}}, {"pk": 36, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:32:28", "object_repr": "otro layout", "object_id": "3", "change_message": "Modifica name.", "user": 1, "content_type": 13}}, {"pk": 35, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:31:12", "object_repr": "otro layout", "object_id": "2", "change_message": "Modifica name, summary y text.", "user": 1, "content_type": 15}}, {"pk": 34, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:29:18", "object_repr": "four panes", "object_id": "2", "change_message": "Se modificaron region en region view \"menu/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 33, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:29:05", "object_repr": "four panes", "object_id": "2", "change_message": "Se agreg\u00f3 region view \"menu/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 32, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:27:28", "object_repr": "four panes", "object_id": "2", "change_message": "Se modificaron content_type, content_view y object_id en region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 31, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:26:37", "object_repr": "four panes", "object_id": "2", "change_message": "Se modificaron content_type y object_id en region view \"category/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 30, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:25:56", "object_repr": "otra p\u00e1gina", "object_id": "3", "change_message": "Modifica layout.", "user": 1, "content_type": 13}}, {"pk": 29, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:25:45", "object_repr": "four panes", "object_id": "2", "change_message": "", "user": 1, "content_type": 17}}, {"pk": 28, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:19:45", "object_repr": "default", "object_id": "1", "change_message": "Se modificaron region y weight en region view \"menu/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 27, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:19:18", "object_repr": "default", "object_id": "1", "change_message": "Se modificaron content_type y object_id en region view \"menu/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 26, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:18:55", "object_repr": "default", "object_id": "1", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 17}}, {"pk": 25, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:17:46", "object_repr": "default", "object_id": "1", "change_message": "Se modificaron weight en region view \"collection/categories_hierarchy\". Se modificaron weight en region view \"category/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 24, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:17:14", "object_repr": "default", "object_id": "1", "change_message": "Se agreg\u00f3 region view \"category/root_items_list\". Se modificaron weight en region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 23, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:16:31", "object_repr": "o por capricho", "object_id": "8", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 22, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:16:18", "object_repr": "por su relevancia", "object_id": "7", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 21, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:15:50", "object_repr": "destacad\u00edsimas", "object_id": "6", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 20, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:15:01", "object_repr": "empezamos a probar ...", "object_id": "3", "change_message": "Se agreg\u00f3 category map \"secciones: novedades\".", "user": 1, "content_type": 15}}, {"pk": 19, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:14:48", "object_repr": "empezamos a probar ...", "object_id": "3", "change_message": "", "user": 1, "content_type": 15}}, {"pk": 18, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:13:59", "object_repr": "otra p\u00e1gina cualquiera", "object_id": "2", "change_message": "Se elimin\u00f3 category map \"secciones: novedades\".", "user": 1, "content_type": 15}}, {"pk": 17, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:13:31", "object_repr": "otra p\u00e1gina cualquiera", "object_id": "2", "change_message": "", "user": 1, "content_type": 15}}, {"pk": 16, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:12:31", "object_repr": "otra p\u00e1gina", "object_id": "3", "change_message": "", "user": 1, "content_type": 13}}, {"pk": 15, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:01:56", "object_repr": "google", "object_id": "2", "change_message": "", "user": 1, "content_type": 13}}, {"pk": 14, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:00:59", "object_repr": "default", "object_id": "1", "change_message": "Se agreg\u00f3 region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 13, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:00:14", "object_repr": "cyclope_example.com", "object_id": "1", "change_message": "Modifica default_layout.", "user": 1, "content_type": 11}}, {"pk": 12, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:59:59", "object_repr": "default", "object_id": "1", "change_message": "", "user": 1, "content_type": 17}}, {"pk": 11, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:59:21", "object_repr": "Home", "object_id": "1", "change_message": "", "user": 1, "content_type": 13}}, {"pk": 10, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:58:43", "object_repr": "t\u00e9cnicas", "object_id": "5", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 9, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:58:23", "object_repr": "2010", "object_id": "4", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 8, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:57:56", "object_repr": "anuales", "object_id": "3", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 7, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:57:43", "object_repr": "preguntas frecuentes", "object_id": "2", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 6, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:50:56", "object_repr": "novedades", "object_id": "1", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 5, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:50:44", "object_repr": "secciones", "object_id": "1", "change_message": "", "user": 1, "content_type": 18}}, {"pk": 4, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:50:19", "object_repr": "Home", "object_id": "1", "change_message": "", "user": 1, "content_type": 15}}, {"pk": 3, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:48:25", "object_repr": "principal", "object_id": "1", "change_message": "", "user": 1, "content_type": 12}}, {"pk": 2, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:48:06", "object_repr": "cyclope_example.com", "object_id": "1", "change_message": "", "user": 1, "content_type": 11}}, {"pk": 1, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 22:47:40", "object_repr": "cyclope_example.com", "object_id": "1", "change_message": "Modifica domain y name.", "user": 1, "content_type": 7}}, {"pk": 1, "model": "cyclope.sitesettings", "fields": {"allow_comments": "YES", "description": "", "global_title": "Cyclope Demo", "site": 1, "theme": "potente", "keywords": "", "default_layout": 1}}, {"pk": 1, "model": "cyclope.menu", "fields": {"main_menu": true, "name": "principal", "slug": "principal"}}, {"pk": 1, "model": "cyclope.menuitem", "fields": {"site_home": true, "rght": 2, "layout": 1, "name": "Home", "parent": null, "lft": 1, "url": "home", "menu": 1, "tree_id": 1, "custom_url": "", "content_object": 1, "content_type": 15, "content_view": "detail", "active": true, "level": 0, "slug": "home"}}, {"pk": 2, "model": "cyclope.menuitem", "fields": {"site_home": false, "rght": 2, "layout": 1, "name": "google", "parent": null, "lft": 1, "url": "http://google.com", "menu": 1, "tree_id": 2, "custom_url": "http://google.com", "content_object": null, "content_type": null, "content_view": "", "active": true, "level": 0, "slug": "google"}}, {"pk": 3, "model": "cyclope.menuitem", "fields": {"site_home": false, "rght": 2, "layout": 2, "name": "otro layout", "parent": null, "lft": 1, "url": "otro-layout", "menu": 1, "tree_id": 3, "custom_url": "", "content_object": null, "content_type": null, "content_view": "", "active": true, "level": 0, "slug": "otro-layout"}}, {"pk": 1, "model": "cyclope.basecontent", "fields": {"name": "Home", "slug": "home"}}, {"pk": 2, "model": "cyclope.basecontent", "fields": {"name": "otra noticia", "slug": "otra-noticia"}}, {"pk": 3, "model": "cyclope.basecontent", "fields": {"name": "una noticia en varias categor\u00edas", "slug": "una-noticia-en-varias-categorias"}}, {"pk": 4, "model": "cyclope.basecontent", "fields": {"name": "una novedad importante", "slug": "una-novedad-importante"}}, {"pk": 5, "model": "cyclope.basecontent", "fields": {"name": "y una m\u00e1s", "slug": "y-una-mas"}}, {"pk": 1, "model": "cyclope.staticpage", "fields": {"text": "<p>Esta es la p\u00e1gina de inicio. El sitio se ve bastante feote... reci\u00e9n estamos empezando a armar vistas de frontend para las apps fundamentales y falta&#160; bastante por hacer... pero ya se puede empezar a jugar...</p><p>Cada cosa que se ve es una \"vistita\" de un objeto. Est\u00e1n definidas en frontend_views.py adentro de cada aplicaci\u00f3n. Cada item del men\u00fa puede tener asociado un layout diferente. Puede tener m\u00e1s regiones, o menos y tener distribu\u00eddas las vistitas como sea. El CSS se rompe bastante porque us\u00e9 uno que ten\u00eda y todav\u00eda no lo adapt\u00e9 casi nada.</p>", "allow_comments": "SITE", "basecontent_ptr": 1, "summary": "<p>Esta es la p\u00e1gina de inicio...</p>"}}, {"pk": 2, "model": "cyclope.staticpage", "fields": {"text": "<p>otra noticia m\u00e1s</p>", "allow_comments": "SITE", "basecontent_ptr": 2, "summary": "<p>otra p\u00e1gina</p>"}}, {"pk": 3, "model": "cyclope.staticpage", "fields": {"text": "<p>esta noticia no est\u00e1 asociada a ninguna opci\u00f3n de men\u00fa, pero s\u00ed tiene varias categor\u00edas, por lo que se puede llegar a ella desde las vistas que listan categor\u00edas.</p>", "allow_comments": "SITE", "basecontent_ptr": 3, "summary": "<p>nada muy loco</p>"}}, {"pk": 4, "model": "cyclope.staticpage", "fields": {"text": "<p>una noticia de la categor\u00eda novedades</p>", "allow_comments": "SITE", "basecontent_ptr": 4, "summary": "<p>algo importante</p>"}}, {"pk": 5, "model": "cyclope.staticpage", "fields": {"text": "<p>una noticia m\u00e1s que tampoco dice nada</p>", "allow_comments": "SITE", "basecontent_ptr": 5, "summary": "<p>y una m\u00e1s</p>"}}, {"pk": 1, "model": "cyclope.regionview", "fields": {"layout": 1, "weight": 0, "content_view": "root_items_list", "region": "header", "object_id": 1, "content_type": 12}}, {"pk": 2, "model": "cyclope.regionview", "fields": {"layout": 1, "weight": 0, "content_view": "categories_hierarchy", "region": "sidebar", "object_id": 1, "content_type": 18}}, {"pk": 3, "model": "cyclope.regionview", "fields": {"layout": 1, "weight": 0, "content_view": "root_items_list", "region": "footer", "object_id": 1, "content_type": 12}}, {"pk": 4, "model": "cyclope.regionview", "fields": {"layout": 2, "weight": 0, "content_view": "categories_hierarchy", "region": "sidebar", "object_id": 1, "content_type": 18}}, {"pk": 5, "model": "cyclope.regionview", "fields": {"layout": 2, "weight": 0, "content_view": "root_items_list", "region": "footer", "object_id": 1, "content_type": 12}}, {"pk": 6, "model": "cyclope.regionview", "fields": {"layout": 2, "weight": 0, "content_view": "detail", "region": "first_pane", "object_id": 4, "content_type": 15}}, {"pk": 7, "model": "cyclope.regionview", "fields": {"layout": 2, "weight": 0, "content_view": "detail", "region": "second_pane", "object_id": 3, "content_type": 15}}, {"pk": 8, "model": "cyclope.regionview", "fields": {"layout": 2, "weight": 0, "content_view": "detail", "region": "third_pane", "object_id": 2, "content_type": 15}}, {"pk": 9, "model": "cyclope.regionview", "fields": {"layout": 2, "weight": 0, "content_view": "detail", "region": "fourth_pane", "object_id": 5, "content_type": 15}}, {"pk": 1, "model": "cyclope.layout", "fields": {"name": "default", "template": "one_sidebar.html", "slug": "default"}}, {"pk": 2, "model": "cyclope.layout", "fields": {"name": "four panes", "template": "sidebar_and_four_panes.html", "slug": "four-panes"}}, {"pk": 1, "model": "collections.collection", "fields": {"content_types": [15], "name": "secciones", "is_navigation_root": true, "slug": "secciones"}}, {"pk": 1, "model": "collections.category", "fields": {"rght": 6, "description": "", "parent": null, "level": 0, "collection": 1, "lft": 1, "tree_id": 1, "active": true, "slug": "novedades", "name": "novedades"}}, {"pk": 2, "model": "collections.category", "fields": {"rght": 4, "description": "", "parent": null, "level": 0, "collection": 1, "lft": 1, "tree_id": 2, "active": true, "slug": "preguntas-frecuentes", "name": "preguntas frecuentes"}}, {"pk": 3, "model": "collections.category", "fields": {"rght": 5, "description": "", "parent": 1, "level": 1, "collection": 1, "lft": 2, "tree_id": 1, "active": true, "slug": "anuales", "name": "anuales"}}, {"pk": 4, "model": "collections.category", "fields": {"rght": 4, "description": "", "parent": 3, "level": 2, "collection": 1, "lft": 3, "tree_id": 1, "active": true, "slug": "2010", "name": "2010"}}, {"pk": 5, "model": "collections.category", "fields": {"rght": 3, "description": "", "parent": 2, "level": 1, "collection": 1, "lft": 2, "tree_id": 2, "active": true, "slug": "tecnicas", "name": "t\u00e9cnicas"}}, {"pk": 6, "model": "collections.category", "fields": {"rght": 6, "description": "", "parent": null, "level": 0, "collection": 1, "lft": 1, "tree_id": 3, "active": true, "slug": "destacadisimas", "name": "destacad\u00edsimas"}}, {"pk": 7, "model": "collections.category", "fields": {"rght": 3, "description": "", "parent": 6, "level": 1, "collection": 1, "lft": 2, "tree_id": 3, "active": true, "slug": "por-su-relevancia", "name": "por su relevancia"}}, {"pk": 8, "model": "collections.category", "fields": {"rght": 5, "description": "", "parent": 6, "level": 1, "collection": 1, "lft": 4, "tree_id": 3, "active": true, "slug": "o-por-capricho", "name": "o por capricho"}}, {"pk": 1, "model": "collections.categorymap", "fields": {"category": 4, "object_id": 3, "content_type": 15}}, {"pk": 2, "model": "collections.categorymap", "fields": {"category": 1, "object_id": 3, "content_type": 15}}, {"pk": 3, "model": "collections.categorymap", "fields": {"category": 8, "object_id": 3, "content_type": 15}}, {"pk": 4, "model": "collections.categorymap", "fields": {"category": 1, "object_id": 4, "content_type": 15}}, {"pk": 5, "model": "collections.categorymap", "fields": {"category": 1, "object_id": 2, "content_type": 15}}, {"pk": 6, "model": "collections.categorymap", "fields": {"category": 3, "object_id": 5, "content_type": 15}}, {"pk": 29, "model": "auth.permission", "fields": {"codename": "add_logentry", "name": "Can add log entry", "content_type": 10}}, {"pk": 30, "model": "auth.permission", "fields": {"codename": "change_logentry", "name": "Can change log entry", "content_type": 10}}, {"pk": 31, "model": "auth.permission", "fields": {"codename": "delete_logentry", "name": "Can delete log entry", "content_type": 10}}, {"pk": 4, "model": "auth.permission", "fields": {"codename": "add_group", "name": "Can add group", "content_type": 2}}, {"pk": 5, "model": "auth.permission", "fields": {"codename": "change_group", "name": "Can change group", "content_type": 2}}, {"pk": 6, "model": "auth.permission", "fields": {"codename": "delete_group", "name": "Can delete group", "content_type": 2}}, {"pk": 10, "model": "auth.permission", "fields": {"codename": "add_message", "name": "Can add message", "content_type": 4}}, {"pk": 11, "model": "auth.permission", "fields": {"codename": "change_message", "name": "Can change message", "content_type": 4}}, {"pk": 12, "model": "auth.permission", "fields": {"codename": "delete_message", "name": "Can delete message", "content_type": 4}}, {"pk": 1, "model": "auth.permission", "fields": {"codename": "add_permission", "name": "Can add permission", "content_type": 1}}, {"pk": 2, "model": "auth.permission", "fields": {"codename": "change_permission", "name": "Can change permission", "content_type": 1}}, {"pk": 3, "model": "auth.permission", "fields": {"codename": "delete_permission", "name": "Can delete permission", "content_type": 1}}, {"pk": 7, "model": "auth.permission", "fields": {"codename": "add_user", "name": "Can add user", "content_type": 3}}, {"pk": 8, "model": "auth.permission", "fields": {"codename": "change_user", "name": "Can change user", "content_type": 3}}, {"pk": 9, "model": "auth.permission", "fields": {"codename": "delete_user", "name": "Can delete user", "content_type": 3}}, {"pk": 56, "model": "auth.permission", "fields": {"codename": "add_category", "name": "Can add category", "content_type": 19}}, {"pk": 57, "model": "auth.permission", "fields": {"codename": "change_category", "name": "Can change category", "content_type": 19}}, {"pk": 58, "model": "auth.permission", "fields": {"codename": "delete_category", "name": "Can delete category", "content_type": 19}}, {"pk": 59, "model": "auth.permission", "fields": {"codename": "add_categorymap", "name": "Can add category map", "content_type": 20}}, {"pk": 60, "model": "auth.permission", "fields": {"codename": "change_categorymap", "name": "Can change category map", "content_type": 20}}, {"pk": 61, "model": "auth.permission", "fields": {"codename": "delete_categorymap", "name": "Can delete category map", "content_type": 20}}, {"pk": 53, "model": "auth.permission", "fields": {"codename": "add_collection", "name": "Can add collection", "content_type": 18}}, {"pk": 54, "model": "auth.permission", "fields": {"codename": "change_collection", "name": "Can change collection", "content_type": 18}}, {"pk": 55, "model": "auth.permission", "fields": {"codename": "delete_collection", "name": "Can delete collection", "content_type": 18}}, {"pk": 22, "model": "auth.permission", "fields": {"codename": "add_comment", "name": "Can add comment", "content_type": 8}}, {"pk": 25, "model": "auth.permission", "fields": {"codename": "can_moderate", "name": "Can moderate comments", "content_type": 8}}, {"pk": 23, "model": "auth.permission", "fields": {"codename": "change_comment", "name": "Can change comment", "content_type": 8}}, {"pk": 24, "model": "auth.permission", "fields": {"codename": "delete_comment", "name": "Can delete comment", "content_type": 8}}, {"pk": 26, "model": "auth.permission", "fields": {"codename": "add_commentflag", "name": "Can add comment flag", "content_type": 9}}, {"pk": 27, "model": "auth.permission", "fields": {"codename": "change_commentflag", "name": "Can change comment flag", "content_type": 9}}, {"pk": 28, "model": "auth.permission", "fields": {"codename": "delete_commentflag", "name": "Can delete comment flag", "content_type": 9}}, {"pk": 13, "model": "auth.permission", "fields": {"codename": "add_contenttype", "name": "Can add content type", "content_type": 5}}, {"pk": 14, "model": "auth.permission", "fields": {"codename": "change_contenttype", "name": "Can change content type", "content_type": 5}}, {"pk": 15, "model": "auth.permission", "fields": {"codename": "delete_contenttype", "name": "Can delete content type", "content_type": 5}}, {"pk": 41, "model": "auth.permission", "fields": {"codename": "add_basecontent", "name": "Can add base content", "content_type": 14}}, {"pk": 42, "model": "auth.permission", "fields": {"codename": "change_basecontent", "name": "Can change base content", "content_type": 14}}, {"pk": 43, "model": "auth.permission", "fields": {"codename": "delete_basecontent", "name": "Can delete base content", "content_type": 14}}, {"pk": 50, "model": "auth.permission", "fields": {"codename": "add_layout", "name": "Can add layout", "content_type": 17}}, {"pk": 51, "model": "auth.permission", "fields": {"codename": "change_layout", "name": "Can change layout", "content_type": 17}}, {"pk": 52, "model": "auth.permission", "fields": {"codename": "delete_layout", "name": "Can delete layout", "content_type": 17}}, {"pk": 35, "model": "auth.permission", "fields": {"codename": "add_menu", "name": "Can add menu", "content_type": 12}}, {"pk": 36, "model": "auth.permission", "fields": {"codename": "change_menu", "name": "Can change menu", "content_type": 12}}, {"pk": 37, "model": "auth.permission", "fields": {"codename": "delete_menu", "name": "Can delete menu", "content_type": 12}}, {"pk": 38, "model": "auth.permission", "fields": {"codename": "add_menuitem", "name": "Can add menu item", "content_type": 13}}, {"pk": 39, "model": "auth.permission", "fields": {"codename": "change_menuitem", "name": "Can change menu item", "content_type": 13}}, {"pk": 40, "model": "auth.permission", "fields": {"codename": "delete_menuitem", "name": "Can delete menu item", "content_type": 13}}, {"pk": 47, "model": "auth.permission", "fields": {"codename": "add_regionview", "name": "Can add region view", "content_type": 16}}, {"pk": 48, "model": "auth.permission", "fields": {"codename": "change_regionview", "name": "Can change region view", "content_type": 16}}, {"pk": 49, "model": "auth.permission", "fields": {"codename": "delete_regionview", "name": "Can delete region view", "content_type": 16}}, {"pk": 32, "model": "auth.permission", "fields": {"codename": "add_sitesettings", "name": "Can add site settings", "content_type": 11}}, {"pk": 33, "model": "auth.permission", "fields": {"codename": "change_sitesettings", "name": "Can change site settings", "content_type": 11}}, {"pk": 34, "model": "auth.permission", "fields": {"codename": "delete_sitesettings", "name": "Can delete site settings", "content_type": 11}}, {"pk": 44, "model": "auth.permission", "fields": {"codename": "add_staticpage", "name": "Can add static page", "content_type": 15}}, {"pk": 45, "model": "auth.permission", "fields": {"codename": "change_staticpage", "name": "Can change static page", "content_type": 15}}, {"pk": 46, "model": "auth.permission", "fields": {"codename": "delete_staticpage", "name": "Can delete static page", "content_type": 15}}, {"pk": 16, "model": "auth.permission", "fields": {"codename": "add_session", "name": "Can add session", "content_type": 6}}, {"pk": 17, "model": "auth.permission", "fields": {"codename": "change_session", "name": "Can change session", "content_type": 6}}, {"pk": 18, "model": "auth.permission", "fields": {"codename": "delete_session", "name": "Can delete session", "content_type": 6}}, {"pk": 19, "model": "auth.permission", "fields": {"codename": "add_site", "name": "Can add site", "content_type": 7}}, {"pk": 20, "model": "auth.permission", "fields": {"codename": "change_site", "name": "Can change site", "content_type": 7}}, {"pk": 21, "model": "auth.permission", "fields": {"codename": "delete_site", "name": "Can delete site", "content_type": 7}}, {"pk": 1, "model": "auth.user", "fields": {"username": "admin", "first_name": "", "last_name": "", "is_active": true, "is_superuser": true, "is_staff": true, "last_login": "2010-04-07 00:24:54", "groups": [], "user_permissions": [], "password": "sha1$f944d$bee18cc9004183414bf920532b8a66bc1221cd66", "email": "admin@admin.com", "date_joined": "2010-04-06 22:46:35"}}] 
     1[{"pk": 14, "model": "contenttypes.contenttype", "fields": {"model": "basecontent", "name": "base content", "app_label": "cyclope"}}, {"pk": 19, "model": "contenttypes.contenttype", "fields": {"model": "category", "name": "category", "app_label": "collections"}}, {"pk": 20, "model": "contenttypes.contenttype", "fields": {"model": "categorymap", "name": "category map", "app_label": "collections"}}, {"pk": 18, "model": "contenttypes.contenttype", "fields": {"model": "collection", "name": "collection", "app_label": "collections"}}, {"pk": 8, "model": "contenttypes.contenttype", "fields": {"model": "comment", "name": "comment", "app_label": "comments"}}, {"pk": 9, "model": "contenttypes.contenttype", "fields": {"model": "commentflag", "name": "comment flag", "app_label": "comments"}}, {"pk": 5, "model": "contenttypes.contenttype", "fields": {"model": "contenttype", "name": "content type", "app_label": "contenttypes"}}, {"pk": 2, "model": "contenttypes.contenttype", "fields": {"model": "group", "name": "group", "app_label": "auth"}}, {"pk": 17, "model": "contenttypes.contenttype", "fields": {"model": "layout", "name": "layout", "app_label": "cyclope"}}, {"pk": 10, "model": "contenttypes.contenttype", "fields": {"model": "logentry", "name": "log entry", "app_label": "admin"}}, {"pk": 12, "model": "contenttypes.contenttype", "fields": {"model": "menu", "name": "menu", "app_label": "cyclope"}}, {"pk": 13, "model": "contenttypes.contenttype", "fields": {"model": "menuitem", "name": "menu item", "app_label": "cyclope"}}, {"pk": 4, "model": "contenttypes.contenttype", "fields": {"model": "message", "name": "message", "app_label": "auth"}}, {"pk": 1, "model": "contenttypes.contenttype", "fields": {"model": "permission", "name": "permission", "app_label": "auth"}}, {"pk": 16, "model": "contenttypes.contenttype", "fields": {"model": "regionview", "name": "region view", "app_label": "cyclope"}}, {"pk": 6, "model": "contenttypes.contenttype", "fields": {"model": "session", "name": "session", "app_label": "sessions"}}, {"pk": 7, "model": "contenttypes.contenttype", "fields": {"model": "site", "name": "site", "app_label": "sites"}}, {"pk": 11, "model": "contenttypes.contenttype", "fields": {"model": "sitesettings", "name": "site settings", "app_label": "cyclope"}}, {"pk": 15, "model": "contenttypes.contenttype", "fields": {"model": "staticpage", "name": "static page", "app_label": "cyclope"}}, {"pk": 3, "model": "contenttypes.contenttype", "fields": {"model": "user", "name": "user", "app_label": "auth"}}, {"pk": "ba9d027ef9a09c2ac77b8a56a60852c5", "model": "sessions.session", "fields": {"expire_date": "2010-04-20 22:47:19", "session_data": "gAJ9cQEoVRJfYXV0aF91c2VyX2JhY2tlbmRxAlUpZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5k\ncy5Nb2RlbEJhY2tlbmRxA1UNX2F1dGhfdXNlcl9pZHEESwF1LmFkMjJiMDkxYjVmNTNmOTkwNmZk\nNDkzNGFhNTU3NjNm\n"}}, {"pk": "b90a46293ee53cc8fb77cb5dbe0d4b53", "model": "sessions.session", "fields": {"expire_date": "2010-04-20 22:59:31", "session_data": "gAJ9cQEuNmM5ZjhjNGFmMmE0YWVlOWE0MmFhYWM4MTNmNWE2MDQ=\n"}}, {"pk": "0110b90c6efd08c58b87d981ecdea782", "model": "sessions.session", "fields": {"expire_date": "2010-04-21 00:24:54", "session_data": "gAJ9cQEoVRJfYXV0aF91c2VyX2JhY2tlbmRxAlUpZGphbmdvLmNvbnRyaWIuYXV0aC5iYWNrZW5k\ncy5Nb2RlbEJhY2tlbmRxA1UNX2F1dGhfdXNlcl9pZHEESwF1LmFkMjJiMDkxYjVmNTNmOTkwNmZk\nNDkzNGFhNTU3NjNm\n"}}, {"pk": 1, "model": "sites.site", "fields": {"domain": "cyclope_demo.com", "name": "cyclope_demo.com"}}, {"pk": 70, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 11:55:14", "object_repr": "home", "object_id": "2", "change_message": "Se agreg\u00f3 region view \"menu/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 69, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 11:39:26", "object_repr": "una p\u00e1gina", "object_id": "3", "change_message": "Modifica name.", "user": 1, "content_type": 13}}, {"pk": 68, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-18 11:39:10", "object_repr": "una p\u00e1gina", "object_id": "6", "change_message": "", "user": 1, "content_type": 15}}, {"pk": 67, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 11:37:23", "object_repr": "cyclope_demo.com", "object_id": "1", "change_message": "Modifica theme.", "user": 1, "content_type": 11}}, {"pk": 66, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 11:25:42", "object_repr": "cyclope_demo.com", "object_id": "1", "change_message": "Modifica theme.", "user": 1, "content_type": 11}}, {"pk": 65, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 10:39:58", "object_repr": "importante", "object_id": "3", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 13}}, {"pk": 64, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 10:39:44", "object_repr": "una novedad importante", "object_id": "4", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 15}}, {"pk": 63, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 10:38:58", "object_repr": "importante", "object_id": "3", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 13}}, {"pk": 62, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 10:36:36", "object_repr": "importante", "object_id": "3", "change_message": "Modifica name, layout, content_type, content_view y content_object.", "user": 1, "content_type": 13}}, {"pk": 61, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 10:34:50", "object_repr": "default", "object_id": "1", "change_message": "Se modificaron region en region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 60, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 10:07:52", "object_repr": "Home", "object_id": "1", "change_message": "Modifica layout.", "user": 1, "content_type": 13}}, {"pk": 59, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 10:07:23", "object_repr": "home", "object_id": "2", "change_message": "Se modificaron region en region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 58, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 09:52:47", "object_repr": "cyclope_demo.com", "object_id": "1", "change_message": "Modifica domain y name.", "user": 1, "content_type": 7}}, {"pk": 57, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 09:40:25", "object_repr": "home", "object_id": "2", "change_message": "Modifica name.", "user": 1, "content_type": 17}}, {"pk": 56, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 09:40:11", "object_repr": "four panes", "object_id": "2", "change_message": "Modifica template. Se modificaron region en region view \"collection/categories_hierarchy\". Se modificaron region en region view \"menu/root_items_list\". Se elimin\u00f3 region view \"staticpage/detail\". Se elimin\u00f3 region view \"staticpage/detail\". Se elimin\u00f3 region view \"staticpage/detail\". Se elimin\u00f3 region view \"staticpage/detail\".", "user": 1, "content_type": 17}}, {"pk": 55, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-18 09:25:41", "object_repr": "cyclope_example.com", "object_id": "1", "change_message": "Modifica theme.", "user": 1, "content_type": 11}}, {"pk": 54, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:24:44", "object_repr": "four panes", "object_id": "2", "change_message": "Se agreg\u00f3 region view \"staticpage/detail\".", "user": 1, "content_type": 17}}, {"pk": 53, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:24:25", "object_repr": "four panes", "object_id": "2", "change_message": "Se agreg\u00f3 region view \"staticpage/detail\".", "user": 1, "content_type": 17}}, {"pk": 52, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-15 18:23:12", "object_repr": "y una m\u00e1s", "object_id": "5", "change_message": "", "user": 1, "content_type": 15}}, {"pk": 51, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:22:37", "object_repr": "otra noticia", "object_id": "2", "change_message": "Se agreg\u00f3 mapa de la categoria \"secciones: novedades\".", "user": 1, "content_type": 15}}, {"pk": 50, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:22:30", "object_repr": "otra noticia", "object_id": "2", "change_message": "Modifica name y text.", "user": 1, "content_type": 15}}, {"pk": 49, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:21:53", "object_repr": "four panes", "object_id": "2", "change_message": "Se agreg\u00f3 region view \"staticpage/detail\".", "user": 1, "content_type": 17}}, {"pk": 48, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-15 18:21:24", "object_repr": "four panes", "object_id": "2", "change_message": "Se agreg\u00f3 region view \"staticpage/detail\".", "user": 1, "content_type": 17}}, {"pk": 47, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-13 04:29:01", "object_repr": "otro layout", "object_id": "3", "change_message": "Modifica content_type y content_view.", "user": 1, "content_type": 13}}, {"pk": 46, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-13 02:02:06", "object_repr": "default", "object_id": "1", "change_message": "Se modificaron region en region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 45, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-13 02:01:57", "object_repr": "four panes", "object_id": "2", "change_message": "Se modificaron region en region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 44, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-12 21:48:43", "object_repr": "una novedad importante", "object_id": "4", "change_message": "", "user": 1, "content_type": 15}}, {"pk": 43, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-12 21:46:32", "object_repr": "otro layout", "object_id": "3", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 13}}, {"pk": 42, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-12 21:45:52", "object_repr": "otro layout", "object_id": "3", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 13}}, {"pk": 41, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-12 21:45:48", "object_repr": "google", "object_id": "2", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 13}}, {"pk": 40, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-12 21:45:44", "object_repr": "Home", "object_id": "1", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 13}}, {"pk": 39, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:41:15", "object_repr": "Home", "object_id": "1", "change_message": "Modifica text.", "user": 1, "content_type": 15}}, {"pk": 38, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:36:47", "object_repr": "una noticia en varias categor\u00edas", "object_id": "3", "change_message": "Modifica name, summary y text.", "user": 1, "content_type": 15}}, {"pk": 37, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:35:25", "object_repr": "empezamos a probar ...", "object_id": "3", "change_message": "Se agreg\u00f3 category map \"secciones: o por capricho\".", "user": 1, "content_type": 15}}, {"pk": 36, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:32:28", "object_repr": "otro layout", "object_id": "3", "change_message": "Modifica name.", "user": 1, "content_type": 13}}, {"pk": 35, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:31:12", "object_repr": "otro layout", "object_id": "2", "change_message": "Modifica name, summary y text.", "user": 1, "content_type": 15}}, {"pk": 34, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:29:18", "object_repr": "four panes", "object_id": "2", "change_message": "Se modificaron region en region view \"menu/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 33, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:29:05", "object_repr": "four panes", "object_id": "2", "change_message": "Se agreg\u00f3 region view \"menu/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 32, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:27:28", "object_repr": "four panes", "object_id": "2", "change_message": "Se modificaron content_type, content_view y object_id en region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 31, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:26:37", "object_repr": "four panes", "object_id": "2", "change_message": "Se modificaron content_type y object_id en region view \"category/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 30, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:25:56", "object_repr": "otra p\u00e1gina", "object_id": "3", "change_message": "Modifica layout.", "user": 1, "content_type": 13}}, {"pk": 29, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:25:45", "object_repr": "four panes", "object_id": "2", "change_message": "", "user": 1, "content_type": 17}}, {"pk": 28, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:19:45", "object_repr": "default", "object_id": "1", "change_message": "Se modificaron region y weight en region view \"menu/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 27, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:19:18", "object_repr": "default", "object_id": "1", "change_message": "Se modificaron content_type y object_id en region view \"menu/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 26, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:18:55", "object_repr": "default", "object_id": "1", "change_message": "No ha modificado ning\u00fan campo.", "user": 1, "content_type": 17}}, {"pk": 25, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:17:46", "object_repr": "default", "object_id": "1", "change_message": "Se modificaron weight en region view \"collection/categories_hierarchy\". Se modificaron weight en region view \"category/root_items_list\".", "user": 1, "content_type": 17}}, {"pk": 24, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:17:14", "object_repr": "default", "object_id": "1", "change_message": "Se agreg\u00f3 region view \"category/root_items_list\". Se modificaron weight en region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 23, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:16:31", "object_repr": "o por capricho", "object_id": "8", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 22, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:16:18", "object_repr": "por su relevancia", "object_id": "7", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 21, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:15:50", "object_repr": "destacad\u00edsimas", "object_id": "6", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 20, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:15:01", "object_repr": "empezamos a probar ...", "object_id": "3", "change_message": "Se agreg\u00f3 category map \"secciones: novedades\".", "user": 1, "content_type": 15}}, {"pk": 19, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:14:48", "object_repr": "empezamos a probar ...", "object_id": "3", "change_message": "", "user": 1, "content_type": 15}}, {"pk": 18, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:13:59", "object_repr": "otra p\u00e1gina cualquiera", "object_id": "2", "change_message": "Se elimin\u00f3 category map \"secciones: novedades\".", "user": 1, "content_type": 15}}, {"pk": 17, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:13:31", "object_repr": "otra p\u00e1gina cualquiera", "object_id": "2", "change_message": "", "user": 1, "content_type": 15}}, {"pk": 16, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:12:31", "object_repr": "otra p\u00e1gina", "object_id": "3", "change_message": "", "user": 1, "content_type": 13}}, {"pk": 15, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 23:01:56", "object_repr": "google", "object_id": "2", "change_message": "", "user": 1, "content_type": 13}}, {"pk": 14, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:00:59", "object_repr": "default", "object_id": "1", "change_message": "Se agreg\u00f3 region view \"collection/categories_hierarchy\".", "user": 1, "content_type": 17}}, {"pk": 13, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 23:00:14", "object_repr": "cyclope_example.com", "object_id": "1", "change_message": "Modifica default_layout.", "user": 1, "content_type": 11}}, {"pk": 12, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:59:59", "object_repr": "default", "object_id": "1", "change_message": "", "user": 1, "content_type": 17}}, {"pk": 11, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:59:21", "object_repr": "Home", "object_id": "1", "change_message": "", "user": 1, "content_type": 13}}, {"pk": 10, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:58:43", "object_repr": "t\u00e9cnicas", "object_id": "5", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 9, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:58:23", "object_repr": "2010", "object_id": "4", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 8, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:57:56", "object_repr": "anuales", "object_id": "3", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 7, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:57:43", "object_repr": "preguntas frecuentes", "object_id": "2", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 6, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:50:56", "object_repr": "novedades", "object_id": "1", "change_message": "", "user": 1, "content_type": 19}}, {"pk": 5, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:50:44", "object_repr": "secciones", "object_id": "1", "change_message": "", "user": 1, "content_type": 18}}, {"pk": 4, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:50:19", "object_repr": "Home", "object_id": "1", "change_message": "", "user": 1, "content_type": 15}}, {"pk": 3, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:48:25", "object_repr": "principal", "object_id": "1", "change_message": "", "user": 1, "content_type": 12}}, {"pk": 2, "model": "admin.logentry", "fields": {"action_flag": 1, "action_time": "2010-04-06 22:48:06", "object_repr": "cyclope_example.com", "object_id": "1", "change_message": "", "user": 1, "content_type": 11}}, {"pk": 1, "model": "admin.logentry", "fields": {"action_flag": 2, "action_time": "2010-04-06 22:47:40", "object_repr": "cyclope_example.com", "object_id": "1", "change_message": "Modifica domain y name.", "user": 1, "content_type": 7}}, {"pk": 1, "model": "cyclope.sitesettings", "fields": {"allow_comments": "YES", "description": "", "global_title": "Cyclope Demo", "site": 1, "theme": "neutrona", "keywords": "", "default_layout": 1}}, {"pk": 1, "model": "cyclope.menu", "fields": {"main_menu": true, "name": "principal", "slug": "principal"}}, {"pk": 1, "model": "cyclope.menuitem", "fields": {"site_home": true, "rght": 2, "layout": 2, "name": "Home", "parent": null, "lft": 1, "url": "home", "menu": 1, "tree_id": 1, "custom_url": "", "content_object": 1, "content_type": 15, "content_view": "detail", "active": true, "level": 0, "slug": "home"}}, {"pk": 2, "model": "cyclope.menuitem", "fields": {"site_home": false, "rght": 2, "layout": 1, "name": "google", "parent": null, "lft": 1, "url": "http://google.com", "menu": 1, "tree_id": 2, "custom_url": "http://google.com", "content_object": null, "content_type": null, "content_view": "", "active": true, "level": 0, "slug": "google"}}, {"pk": 3, "model": "cyclope.menuitem", "fields": {"site_home": false, "rght": 2, "layout": 1, "name": "una p\u00e1gina", "parent": null, "lft": 1, "url": "importante", "menu": 1, "tree_id": 3, "custom_url": "", "content_object": 6, "content_type": 15, "content_view": "detail", "active": true, "level": 0, "slug": "una-pagina"}}, {"pk": 1, "model": "cyclope.basecontent", "fields": {"name": "Home", "slug": "home"}}, {"pk": 2, "model": "cyclope.basecontent", "fields": {"name": "otra noticia", "slug": "otra-noticia"}}, {"pk": 3, "model": "cyclope.basecontent", "fields": {"name": "una noticia en varias categor\u00edas", "slug": "una-noticia-en-varias-categorias"}}, {"pk": 4, "model": "cyclope.basecontent", "fields": {"name": "una novedad importante", "slug": "una-novedad-importante"}}, {"pk": 5, "model": "cyclope.basecontent", "fields": {"name": "y una m\u00e1s", "slug": "y-una-mas"}}, {"pk": 6, "model": "cyclope.basecontent", "fields": {"name": "una p\u00e1gina", "slug": "una-pagina"}}, {"pk": 1, "model": "cyclope.staticpage", "fields": {"text": "<p>Esta es la p\u00e1gina de inicio. El sitio se ve bastante feote... reci\u00e9n estamos empezando a armar vistas de frontend para las apps fundamentales y falta&#160; bastante por hacer... pero ya se puede empezar a jugar...</p><p>Cada cosa que se ve es una \"vistita\" de un objeto. Est\u00e1n definidas en frontend_views.py adentro de cada aplicaci\u00f3n. Cada item del men\u00fa puede tener asociado un layout diferente. Puede tener m\u00e1s regiones, o menos y tener distribu\u00eddas las vistitas como sea. El CSS se rompe bastante porque us\u00e9 uno que ten\u00eda y todav\u00eda no lo adapt\u00e9 casi nada.</p>", "allow_comments": "SITE", "basecontent_ptr": 1, "summary": "<p>Esta es la p\u00e1gina de inicio...</p>"}}, {"pk": 2, "model": "cyclope.staticpage", "fields": {"text": "<p>otra noticia m\u00e1s</p>", "allow_comments": "SITE", "basecontent_ptr": 2, "summary": "<p>otra p\u00e1gina</p>"}}, {"pk": 3, "model": "cyclope.staticpage", "fields": {"text": "<p>esta noticia no est\u00e1 asociada a ninguna opci\u00f3n de men\u00fa, pero s\u00ed tiene varias categor\u00edas, por lo que se puede llegar a ella desde las vistas que listan categor\u00edas.</p>", "allow_comments": "SITE", "basecontent_ptr": 3, "summary": "<p>nada muy loco</p>"}}, {"pk": 4, "model": "cyclope.staticpage", "fields": {"text": "<p>una noticia de la categor\u00eda novedades</p>", "allow_comments": "SITE", "basecontent_ptr": 4, "summary": "<p>algo importante</p>"}}, {"pk": 5, "model": "cyclope.staticpage", "fields": {"text": "<p>una noticia m\u00e1s que tampoco dice nada</p>", "allow_comments": "SITE", "basecontent_ptr": 5, "summary": "<p>y una m\u00e1s</p>"}}, {"pk": 6, "model": "cyclope.staticpage", "fields": {"text": "<p>una p\u00e1gina cualquiera que est\u00e1 en el men\u00fa, pero no est\u00e1 en ninguna colecci\u00f3n /categor\u00eda</p>", "allow_comments": "NO", "basecontent_ptr": 6, "summary": "<p>una p\u00e1gina cualquiera</p>"}}, {"pk": 1, "model": "cyclope.regionview", "fields": {"layout": 1, "weight": 0, "content_view": "root_items_list", "region": "header", "object_id": 1, "content_type": 12}}, {"pk": 2, "model": "cyclope.regionview", "fields": {"layout": 1, "weight": 0, "content_view": "categories_hierarchy", "region": "left_sidebar", "object_id": 1, "content_type": 18}}, {"pk": 3, "model": "cyclope.regionview", "fields": {"layout": 1, "weight": 0, "content_view": "root_items_list", "region": "footer", "object_id": 1, "content_type": 12}}, {"pk": 4, "model": "cyclope.regionview", "fields": {"layout": 2, "weight": 0, "content_view": "categories_hierarchy", "region": "left_sidebar", "object_id": 1, "content_type": 18}}, {"pk": 5, "model": "cyclope.regionview", "fields": {"layout": 2, "weight": 0, "content_view": "root_items_list", "region": "header", "object_id": 1, "content_type": 12}}, {"pk": 6, "model": "cyclope.regionview", "fields": {"layout": 2, "weight": 0, "content_view": "root_items_list", "region": "right_sidebar", "object_id": 1, "content_type": 12}}, {"pk": 1, "model": "cyclope.layout", "fields": {"name": "default", "template": "one_sidebar.html", "slug": "default"}}, {"pk": 2, "model": "cyclope.layout", "fields": {"name": "home", "template": "two_sidebars.html", "slug": "home"}}, {"pk": 1, "model": "collections.collection", "fields": {"content_types": [15], "name": "secciones", "is_navigation_root": true, "slug": "secciones"}}, {"pk": 1, "model": "collections.category", "fields": {"rght": 6, "description": "", "parent": null, "level": 0, "collection": 1, "lft": 1, "tree_id": 1, "active": true, "slug": "novedades", "name": "novedades"}}, {"pk": 2, "model": "collections.category", "fields": {"rght": 4, "description": "", "parent": null, "level": 0, "collection": 1, "lft": 1, "tree_id": 2, "active": true, "slug": "preguntas-frecuentes", "name": "preguntas frecuentes"}}, {"pk": 3, "model": "collections.category", "fields": {"rght": 5, "description": "", "parent": 1, "level": 1, "collection": 1, "lft": 2, "tree_id": 1, "active": true, "slug": "anuales", "name": "anuales"}}, {"pk": 4, "model": "collections.category", "fields": {"rght": 4, "description": "", "parent": 3, "level": 2, "collection": 1, "lft": 3, "tree_id": 1, "active": true, "slug": "2010", "name": "2010"}}, {"pk": 5, "model": "collections.category", "fields": {"rght": 3, "description": "", "parent": 2, "level": 1, "collection": 1, "lft": 2, "tree_id": 2, "active": true, "slug": "tecnicas", "name": "t\u00e9cnicas"}}, {"pk": 6, "model": "collections.category", "fields": {"rght": 6, "description": "", "parent": null, "level": 0, "collection": 1, "lft": 1, "tree_id": 3, "active": true, "slug": "destacadisimas", "name": "destacad\u00edsimas"}}, {"pk": 7, "model": "collections.category", "fields": {"rght": 3, "description": "", "parent": 6, "level": 1, "collection": 1, "lft": 2, "tree_id": 3, "active": true, "slug": "por-su-relevancia", "name": "por su relevancia"}}, {"pk": 8, "model": "collections.category", "fields": {"rght": 5, "description": "", "parent": 6, "level": 1, "collection": 1, "lft": 4, "tree_id": 3, "active": true, "slug": "o-por-capricho", "name": "o por capricho"}}, {"pk": 1, "model": "collections.categorymap", "fields": {"category": 4, "object_id": 3, "content_type": 15}}, {"pk": 2, "model": "collections.categorymap", "fields": {"category": 1, "object_id": 3, "content_type": 15}}, {"pk": 3, "model": "collections.categorymap", "fields": {"category": 8, "object_id": 3, "content_type": 15}}, {"pk": 4, "model": "collections.categorymap", "fields": {"category": 1, "object_id": 4, "content_type": 15}}, {"pk": 5, "model": "collections.categorymap", "fields": {"category": 1, "object_id": 2, "content_type": 15}}, {"pk": 6, "model": "collections.categorymap", "fields": {"category": 3, "object_id": 5, "content_type": 15}}, {"pk": 29, "model": "auth.permission", "fields": {"codename": "add_logentry", "name": "Can add log entry", "content_type": 10}}, {"pk": 30, "model": "auth.permission", "fields": {"codename": "change_logentry", "name": "Can change log entry", "content_type": 10}}, {"pk": 31, "model": "auth.permission", "fields": {"codename": "delete_logentry", "name": "Can delete log entry", "content_type": 10}}, {"pk": 4, "model": "auth.permission", "fields": {"codename": "add_group", "name": "Can add group", "content_type": 2}}, {"pk": 5, "model": "auth.permission", "fields": {"codename": "change_group", "name": "Can change group", "content_type": 2}}, {"pk": 6, "model": "auth.permission", "fields": {"codename": "delete_group", "name": "Can delete group", "content_type": 2}}, {"pk": 10, "model": "auth.permission", "fields": {"codename": "add_message", "name": "Can add message", "content_type": 4}}, {"pk": 11, "model": "auth.permission", "fields": {"codename": "change_message", "name": "Can change message", "content_type": 4}}, {"pk": 12, "model": "auth.permission", "fields": {"codename": "delete_message", "name": "Can delete message", "content_type": 4}}, {"pk": 1, "model": "auth.permission", "fields": {"codename": "add_permission", "name": "Can add permission", "content_type": 1}}, {"pk": 2, "model": "auth.permission", "fields": {"codename": "change_permission", "name": "Can change permission", "content_type": 1}}, {"pk": 3, "model": "auth.permission", "fields": {"codename": "delete_permission", "name": "Can delete permission", "content_type": 1}}, {"pk": 7, "model": "auth.permission", "fields": {"codename": "add_user", "name": "Can add user", "content_type": 3}}, {"pk": 8, "model": "auth.permission", "fields": {"codename": "change_user", "name": "Can change user", "content_type": 3}}, {"pk": 9, "model": "auth.permission", "fields": {"codename": "delete_user", "name": "Can delete user", "content_type": 3}}, {"pk": 56, "model": "auth.permission", "fields": {"codename": "add_category", "name": "Can add category", "content_type": 19}}, {"pk": 57, "model": "auth.permission", "fields": {"codename": "change_category", "name": "Can change category", "content_type": 19}}, {"pk": 58, "model": "auth.permission", "fields": {"codename": "delete_category", "name": "Can delete category", "content_type": 19}}, {"pk": 59, "model": "auth.permission", "fields": {"codename": "add_categorymap", "name": "Can add category map", "content_type": 20}}, {"pk": 60, "model": "auth.permission", "fields": {"codename": "change_categorymap", "name": "Can change category map", "content_type": 20}}, {"pk": 61, "model": "auth.permission", "fields": {"codename": "delete_categorymap", "name": "Can delete category map", "content_type": 20}}, {"pk": 53, "model": "auth.permission", "fields": {"codename": "add_collection", "name": "Can add collection", "content_type": 18}}, {"pk": 54, "model": "auth.permission", "fields": {"codename": "change_collection", "name": "Can change collection", "content_type": 18}}, {"pk": 55, "model": "auth.permission", "fields": {"codename": "delete_collection", "name": "Can delete collection", "content_type": 18}}, {"pk": 22, "model": "auth.permission", "fields": {"codename": "add_comment", "name": "Can add comment", "content_type": 8}}, {"pk": 25, "model": "auth.permission", "fields": {"codename": "can_moderate", "name": "Can moderate comments", "content_type": 8}}, {"pk": 23, "model": "auth.permission", "fields": {"codename": "change_comment", "name": "Can change comment", "content_type": 8}}, {"pk": 24, "model": "auth.permission", "fields": {"codename": "delete_comment", "name": "Can delete comment", "content_type": 8}}, {"pk": 26, "model": "auth.permission", "fields": {"codename": "add_commentflag", "name": "Can add comment flag", "content_type": 9}}, {"pk": 27, "model": "auth.permission", "fields": {"codename": "change_commentflag", "name": "Can change comment flag", "content_type": 9}}, {"pk": 28, "model": "auth.permission", "fields": {"codename": "delete_commentflag", "name": "Can delete comment flag", "content_type": 9}}, {"pk": 13, "model": "auth.permission", "fields": {"codename": "add_contenttype", "name": "Can add content type", "content_type": 5}}, {"pk": 14, "model": "auth.permission", "fields": {"codename": "change_contenttype", "name": "Can change content type", "content_type": 5}}, {"pk": 15, "model": "auth.permission", "fields": {"codename": "delete_contenttype", "name": "Can delete content type", "content_type": 5}}, {"pk": 41, "model": "auth.permission", "fields": {"codename": "add_basecontent", "name": "Can add base content", "content_type": 14}}, {"pk": 42, "model": "auth.permission", "fields": {"codename": "change_basecontent", "name": "Can change base content", "content_type": 14}}, {"pk": 43, "model": "auth.permission", "fields": {"codename": "delete_basecontent", "name": "Can delete base content", "content_type": 14}}, {"pk": 50, "model": "auth.permission", "fields": {"codename": "add_layout", "name": "Can add layout", "content_type": 17}}, {"pk": 51, "model": "auth.permission", "fields": {"codename": "change_layout", "name": "Can change layout", "content_type": 17}}, {"pk": 52, "model": "auth.permission", "fields": {"codename": "delete_layout", "name": "Can delete layout", "content_type": 17}}, {"pk": 35, "model": "auth.permission", "fields": {"codename": "add_menu", "name": "Can add menu", "content_type": 12}}, {"pk": 36, "model": "auth.permission", "fields": {"codename": "change_menu", "name": "Can change menu", "content_type": 12}}, {"pk": 37, "model": "auth.permission", "fields": {"codename": "delete_menu", "name": "Can delete menu", "content_type": 12}}, {"pk": 38, "model": "auth.permission", "fields": {"codename": "add_menuitem", "name": "Can add menu item", "content_type": 13}}, {"pk": 39, "model": "auth.permission", "fields": {"codename": "change_menuitem", "name": "Can change menu item", "content_type": 13}}, {"pk": 40, "model": "auth.permission", "fields": {"codename": "delete_menuitem", "name": "Can delete menu item", "content_type": 13}}, {"pk": 47, "model": "auth.permission", "fields": {"codename": "add_regionview", "name": "Can add region view", "content_type": 16}}, {"pk": 48, "model": "auth.permission", "fields": {"codename": "change_regionview", "name": "Can change region view", "content_type": 16}}, {"pk": 49, "model": "auth.permission", "fields": {"codename": "delete_regionview", "name": "Can delete region view", "content_type": 16}}, {"pk": 32, "model": "auth.permission", "fields": {"codename": "add_sitesettings", "name": "Can add site settings", "content_type": 11}}, {"pk": 33, "model": "auth.permission", "fields": {"codename": "change_sitesettings", "name": "Can change site settings", "content_type": 11}}, {"pk": 34, "model": "auth.permission", "fields": {"codename": "delete_sitesettings", "name": "Can delete site settings", "content_type": 11}}, {"pk": 44, "model": "auth.permission", "fields": {"codename": "add_staticpage", "name": "Can add static page", "content_type": 15}}, {"pk": 45, "model": "auth.permission", "fields": {"codename": "change_staticpage", "name": "Can change static page", "content_type": 15}}, {"pk": 46, "model": "auth.permission", "fields": {"codename": "delete_staticpage", "name": "Can delete static page", "content_type": 15}}, {"pk": 16, "model": "auth.permission", "fields": {"codename": "add_session", "name": "Can add session", "content_type": 6}}, {"pk": 17, "model": "auth.permission", "fields": {"codename": "change_session", "name": "Can change session", "content_type": 6}}, {"pk": 18, "model": "auth.permission", "fields": {"codename": "delete_session", "name": "Can delete session", "content_type": 6}}, {"pk": 19, "model": "auth.permission", "fields": {"codename": "add_site", "name": "Can add site", "content_type": 7}}, {"pk": 20, "model": "auth.permission", "fields": {"codename": "change_site", "name": "Can change site", "content_type": 7}}, {"pk": 21, "model": "auth.permission", "fields": {"codename": "delete_site", "name": "Can delete site", "content_type": 7}}, {"pk": 1, "model": "auth.user", "fields": {"username": "admin", "first_name": "", "last_name": "", "is_active": true, "is_superuser": true, "is_staff": true, "last_login": "2010-04-07 00:24:54", "groups": [], "user_permissions": [], "password": "sha1$f944d$bee18cc9004183414bf920532b8a66bc1221cd66", "email": "admin@admin.com", "date_joined": "2010-04-06 22:46:35"}}] 
Note: See TracChangeset for help on using the changeset viewer.