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-1.0.4.tar.gz (8.2 kB view details)

Uploaded Source

File details

Details for the file molo.usermetadata-1.0.4.tar.gz.

File metadata

File hashes

Hashes for molo.usermetadata-1.0.4.tar.gz
Algorithm Hash digest
SHA256 66ef3f95cedf8209e550e92d1b6e804e45b465615bfb9b45e4dfea6d0b3ac94a
MD5 95d9e2f645f2a2161fe7c62098568384
BLAKE2b-256 a04d5a50c49548e70936e8bfab45a9b4fc8244d387609ac5bcdd1694be2ddf82

See more details on using hashes here.

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