Skip to content
This repository was archived by the owner on May 18, 2026. It is now read-only.

praekeltfoundation/molo.yourtips

Repository files navigation

molo.yourtips

This feature enables youth to share short tips with one another.

  1. django >= 1.8
  2. molo.core >= 5.5.0
  3. django-secretballot >= 0.7.0
  4. django-likes >= 1.11
  1. Install or add django-likes to your Python path.

  2. Configure django-secretballot as described here.

  3. Add likes to your INSTALLED_APPS setting.

  4. Add likes url include to your project's urls.py file:

    url(r'^likes/',
        include('likes.urls',
                namespace='likes',
                app_name='likes')),
    
  5. Add likes.middleware.SecretBallotUserIpUseragentMiddleware to your MIDDLEWARE_CLASSES setting, i.e.:

    MIDDLEWARE_CLASSES = (
        ...other middleware classes...
        "likes.middleware.SecretBallotUserIpUseragentMiddleware",
    )
    
  6. Add django.core.context_processors.request to your TEMPLATE_CONTEXT_PROCESSORS setting, i.e.:

    TEMPLATE_CONTEXT_PROCESSORS = (
        ...other context processors...
        "django.core.context_processors.request",
    )
    
  1. pip install molo.yourtips

  2. Add molo.yourtips to your INSTALLED_APPS settings.

  3. Add yourtips url include to your project's urls.py file:

    url(r'^yourtips/', include('molo.yourtips.urls',
                               namespace='molo.yourtips')),
    
  4. Create and publish a YourTips page on the CMS. By adding the YourTips page the

  1. This feature enables youth to share short (twitter length - 140 characters) tips on the platform with one another.
  2. User submitted tips are curated by content managers and published on the platform.
  3. Users can interact with published tips by liking each others tips or sharing (requires consent from author) on facebook or twitter.

Homepage Banner Copy

  1. By default the homepage banner copy is Do you have advice you can share with other youth on relationships?.
  2. The homepage banner copy by adding the copy the yourtips settings.

About

This feature enables youth to share short tips with one another

Resources

License

Stars

0 stars

Watchers

15 watching

Forks

Packages

 
 
 

Contributors