Skip to main content

User metadata to be used with Molo.

Project description

Continuous Integration Code Coverage

Provides code to help with User metadata in a project using the Molo code base.

Installation:

pip install molo.usermetadata

In your app settings:

INSTALLED_APPS = (
   'molo.usermetadata',
)

MIDDLEWARE = (
   'molo.usermetadata.middleware.PeronsaMiddleware'
)

In your app urls.py:

urlpatterns += patterns('',
     url(r'^meta/', include('molo.usermetadata.urls', namespace='molo.usermetadata', app_name='molo.usermetadata')),
)

Note:

In order for the personae to be activated, choose activate under wagtail settings > personae settings

Google Analytics

In order for GA to pick up persona data you need to add the following to your base.html

At the top of the template you need to load the persona tag:

{% load persona_tags %}

In your GTM block add the following to get the persona value:

{% persona_selected as persona_selected_value %}

In your <noscript> tag add the following to src in order to add the persona to the data layer when JS is not enabled:

{% if persona_selected_value%}&persona={{ persona_selected_value }}&event=persona{% endif %}

At the bottom of your tag manager block add the following in order to add the persona to the data layer when JS is enabled:

{% if persona_selected_value %}
  <script type="text/javascript">
    dataLayer.push({'persona': '{{ persona_selected_value }}', 'event': 'persona'});
  </script>
{% endif %}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

molo.usermetadata-6.0.0.tar.gz (8.9 kB view hashes)

Uploaded Source

Built Distribution

molo.usermetadata-6.0.0-py2-none-any.whl (13.0 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page