Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Latest commit

 

History

History
50 lines (41 loc) · 1.02 KB

README.md

File metadata and controls

50 lines (41 loc) · 1.02 KB

django-facebook-social-plugins

Django wrapper tags on facebook social plugins.

Requirements

Installation

Install the extension running the setup.py, until i'll not publish on PyPi.

Configuration

Configure the settings.py like this:

INSTALLED_APPS = (... 'django_fbplugins' ...)

Include it

Include the tag library in a template:

{% load fbplugins %}

And then...

Use it

As a like button:

{% fb_like_btn_html href="https://www.facebook.com/FacebookDevelopers" %}

As a like box:

{% fb_like_box_html href="https://www.facebook.com/FacebookDevelopers" %}

Options

You can use various options like this:

{% fb_like_box_html href="https://www.facebook.com/FacebookDevelopers"  colorscheme="dark" showborder="false" header="false" %}

Philosophy

This application is written keeping in mind the KISS motto: Keep it simple stupid!