• Stars
    star
    108
  • Rank 319,348 (Top 7 %)
  • Language
    Python
  • License
    MIT License
  • Created about 13 years ago
  • Updated over 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

a site invitation app for Django

Pinax Invitations

CircleCi Codecov

Table of Contents

About Pinax

Pinax is an open-source platform built on the Django Web Framework. It is an ecosystem of reusable Django apps, themes, and starter project templates. This collection can be found at http://pinaxproject.com.

Important Links

Where you can find what you need:

pinax-invitations

Overview

pinax-invitations is a site invitation app for Django.

Dependencies

  • django-user-accounts
  • django-appconf

Supported Django and Python Versions

Django / Python 3.6 3.7 3.8 3.9
2.2 * * * *
3.1 * * * *
3.2 * * * *

Documentation

Installation

To install pinax-invitations:

    $ pip install pinax-invitations

Add pinax.invitations to your INSTALLED_APPS setting:

    INSTALLED_APPS = [
        # other apps
        "pinax.invitations",
    ]

Add settings as needed to customize pinax-invitation’s default behavior for your website.

Add pinax.invitations.urls to your project urlpatterns:

    urlpatterns = [
        # other urls
        url(r"^invitations/", include("pinax.invitations.urls", namespace="pinax_invitations")),
    ]

Usage

Integrating pinax-invitations into your project involves using template tags and wiring up javascript. The invite form is intended to function via AJAX and as such returns JSON. Incorporate eldarion-ajax for markup-based AJAX handling that works out of the box. Note you can use another AJAX handling library if needed.

pinax-theme-bootstrap is a semi-optional dependency. The only reason it is required is the included _invite_form.html renders the form through the as_bootstrap filter. If you override this template in your project, you obviously remove this requirement in context of this app.

Get started by adding the following blocks to your templates to expose an invite form and display to the user a list of who they have invited:

{% load pinax_invitations_tags %}

<div class="invites">
    {% invite_form request.user %}

    <div class="sent">
        <h3>Invitations Sent</h3>
        {% invites_sent request.user %}
    </div>
</div>

Then if you have an account bar somewhere at the top of your screen which shows the user if they were logged in or not, you might include this tag to show the number of invites remaining for a user:

{% load pinax_invitations_tags %}

{% invites_remaining user %}

You’ll then need to include eldarion-ajax:

<script>require('eldarion-ajax');</script>

Settings

PINAX_INVITATIONS_DEFAULT_EXPIRATION

Defines the default expiration period for invitations in hours. This setting is currently the only way to specify the expiration date of invitations.

Default: 168 (seven days)

PINAX_INVITATIONS_DEFAULT_INVITE_ALLOCATION

Defines the default number of invites that new users are allocated when they signup. In order to enable unlimited invitations, set this to -1.

Default: 0

Signals

These signals are sent from JoinInvitation and provides a single keyword argument, "invitation" which is the relevant instance of JoinInvitation.

pinax_invitations.signals.invite_sent

Sent immediately after the invitation is sent.

pinax_invitations.signals.invite_accepted

Sent immediately after invitation acceptance has been processed.

pinax_invitations.joined_independently

Sent when someone signs up using the same email address that exists for an invitation and they confirm that email address.

Management Commands

add_invites

Adds invites to all users with 0 invites remaining.

manage.py add_invites 10  # Adds 10 new invites to all users with 0 invites remaining

infinite_invites

Gives all users unlimited invites.

manage.py infinite_invites

topoff_invites

Ensures all users have at least a certain number of invites.

manage.py topoff_invites 10  # Ensure all users have at least 10 invites

Views

Four different views handle POSTs via AJAX with a single variable, amount. These views help administrators manage invites from a front-end dashboard. Responses sent from these views conform to eldarion-ajax markup-based standards.

All views require the user permission pinax_invitations.manage_invites. The largest use case is already be covered in that any user with "staff" or "superuser" privileges supersedes the need for this explicit permission.

topoff_all

Tops off all users with at least amount invites.

URL: pinax_invitations:topoff_all

Returns:

{
    "inner-fragments": {
        ".invite-total": amount
    }
}

topoff_user

Tops off {{ user.pk }} with at least amount invites.

URL: pinax_invitations:topoff_user user.pk

Returns:

{
    "html": amount
}

addto_all

Adds number invites to all users.

URL: pinax_invitations:addto_all

Returns:

{
    "inner-fragments": {
        ".amount-added": amount
    }
}

addto_user

Adds number invites to {{ user.pk }}.

URL: pinax_invitations:addto_user user.pk

Returns:

{
    "inner-fragments": {
        ".html": amount
    }
}

invite_stat

Returns a rendered pinax/invitations/_invite_stat.html fragment (supplied by the site developer) to render an InvitationStat object for the user.pk provided to the template as the context variable stat.

The intended target for this view is an element with data-refresh-url (processed by eldarion-ajax).

URL: pinax_invitations:invite_stat user.pk

Returns:

{
    "html": <rendered pinax/invitations/_invite_stat.html>  # provided by site developer
}

Templates

pinax-invitations uses minimal template snippets rendered with template tags.

Default templates are provided by the pinax-templates app in the invitations section of that project.

Reference pinax-templates installation instructions to include these templates in your project.

View live pinax-templates examples and source at Pinax Templates!

Customizing Templates

Override the default pinax-templates templates by copying them into your project subdirectory pinax/invitations/ on the template path and modifying as needed.

For example if your project doesn't use Bootstrap, copy the desired templates then remove Bootstrap and Font Awesome class names from your copies. Remove class references like class="btn btn-success" and class="icon icon-pencil" as well as bootstrap from the {% load i18n bootstrap %} statement. Since bootstrap template tags and filters are no longer loaded, you'll also need to update {{ form|bootstrap }} to {{ form }} since the "bootstrap" filter is no longer available.

_invite_form.html

A snippet that renders the invite form as well as a div to hold the contents of the response from the form AJAX submission.

_invited.html

An unordered list of people you have invited that is linked to their profile when they join the site.

_invites_remaining.html

Fragment displays how many invites a particular user has.

Change Log

8.0.0

  • Drop Django 2.* and Python 2,*, 3.4, 3.5 and 3.6 support
  • Add Django 4.* , and Python 3.9, 3.10 support

7.0.0

  • Drop Django 1.11, 2.0, and 2.1, and Python 2,7, 3.4, and 3.5 support
  • Add Django 2.2 and 3.0, and Python 3.6, 3.7, and 3.8 support
  • Update packaging configs
  • Direct users to community resources

6.1.2

  • Replace deprecated context_instance=RequestContext(r) kwarg with request=r kwarg
  • Add InviteView smoke tests
  • Add form test

6.1.1

  • Add django>=1.11 to requirements
  • Update CI config
  • Improve documentation markup

6.1.0

  • Standardize documentation layout
  • Drop Django v1.8, v1.10 support
  • Copy documentation from kaleo

6.0.0

  • Add Django 2.0 compatibility testing
  • Drop Django 1.9 and Python 3.3 support
  • Convert CI and coverage to CircleCi and CodeCov
  • Add PyPi-compatible long description

5.0.0

  • update function views to CBVs

4.0.0 - 4.0.4

  • package version updates

3.0.0

  • Rename templatetag library from invitations_tags to pinax_invitations_tags

2.1.1

  • Import error when importing login_required decorator

2.1.0

  • Set default_app_config to point to the correct AppConfig
  • Remove compat module that provided compatibility with old Django versions
  • Pin to initial migration for django-user-accounts
  • Bump DUA dependency
  • Fix typo in setup.py url
  • Remove placeholder text from readme and fix badges
  • Add Django migrations
  • Move templates into pinax-theme-bootstrap

2.0.0

  • Initial release as pinax-invitations.

History

Eldarion’s kaleo app was donated to Pinax and renamed pinax-invitations.

Contribute

Contributing information can be found in the Pinax community health file repo.

Code of Conduct

In order to foster a kind, inclusive, and harassment-free community, the Pinax Project has a Code of Conduct. We ask you to treat everyone as a smart human programmer that shares an interest in Python, Django, and Pinax with you.

Connect with Pinax

For updates and news regarding the Pinax Project, please follow us on Twitter @pinaxproject and check out our Pinax Project blog.

License

Copyright (c) 2012-present James Tauber and contributors under the MIT license.

More Repositories

1

pinax

a Django-based platform for rapidly developing websites
Python
2,624
star
2

django-user-accounts

User accounts for Django
Python
1,109
star
3

django-mailer

mail queuing and management for the Django web framework
Python
721
star
4

pinax-stripe-light

a payments Django app for Stripe
Python
677
star
5

pinax-blog

a blog app for Django
Python
461
star
6

pinax-badges

a badges app for Django
Python
317
star
7

symposion

a Django project for conference websites
Python
300
star
8

pinax-theme-bootstrap

A theme for Pinax based on Twitter's Bootstrap
HTML
269
star
9

pinax-referrals

a referrals app for Django
Python
208
star
10

pinax-messages

a Django app for allowing users of your site to send messages to each other
Python
197
star
11

django-forms-bootstrap

Bootstrap filter and templates for use with Django forms
Python
175
star
12

pinax-likes

a liking app for Django
Python
156
star
13

pinax-webanalytics

analytics and metrics integration for Django
Python
122
star
14

pinax-project-account

a starter project that incorporates account features from django-user-accounts
119
star
15

pinax-eventlog

An event logger
Python
108
star
16

pinax-comments

a comments app for Django
Python
97
star
17

pinax-models

Provide Support for Logical Deletes on Models and in the Django Admin
Python
90
star
18

pinax-ratings

a ratings app for Django
Python
88
star
19

pinax-starter-projects

Pinax Starter Projects
Shell
79
star
20

django-flag

flagging of inapproriate/spam content
Python
73
star
21

django-waitinglist

DEPRECATED - please see https://github.com/pinax/pinax-waitinglist
Python
64
star
22

pinax-points

a points, positions and levels app for Django
Python
61
star
23

pinax-calendars

Django utilities for publishing events as a calendar
Python
61
star
24

pinax-documents

a document management app for Django
Python
59
star
25

pinax-boxes

database-driven regions on webpages for Django
Python
48
star
26

pinax-teams

an app for Django sites that supports open, by invitation, and by application teams
Python
47
star
27

pinax-starter-app

A starter app template for Pinax apps
Python
36
star
28

pinax-wiki

Easily add a wiki to your Django site
Python
32
star
29

pinax-project-symposion

a starter project demonstrating a minimal symposion instance
HTML
31
star
30

code.pinaxproject.com

the site behind code.pinaxproject.com
Python
29
star
31

pinax-forums

an extensible forums app for Django and Pinax
Python
27
star
32

pinax-project-zero

the foundation for other Pinax starter projects
25
star
33

pinax-waitinglist

a Django waiting list app
Python
25
star
34

pinax-testimonials

a testimonials app for Django
Python
24
star
35

pinax-project-teams

a starter project that has account management, profiles, teams and basic collaborative content.
18
star
36

pinax-images

an app for managing collections of images associated with a content object
Python
17
star
37

pinax-templates

semantic templates for pinax apps
HTML
15
star
38

pinax-phone-confirmation

An app to provide phone confirmation via Twilio
Python
15
star
39

pinax-project-socialauth

a starter project that supports social authentication
CSS
15
star
40

pinax-api

RESTful API adhering to the JSON:API specification
Python
13
star
41

pinax-submissions

an app for proposing and reviewing submissions
Python
12
star
42

pinax-project-blog

a blog starter project
10
star
43

pinax-project-forums

an out-of-the-box Pinax starter project implementing forums
HTML
10
star
44

pinax-images-panel

a React component for uploading and managing images with the pinax-images Django reusable app
JavaScript
9
star
45

pinax-cohorts

Create cohorts to invite to join your private beta site. Depends on pinax-waitinglist.
Python
9
star
46

pinax-pages

A light weight CMS born out of Symposion
Python
8
star
47

pinax-project-lms

A starter project to bring together components of the Pinax Learning Management System
CSS
7
star
48

pinax-cli

a tool for easily instantiating Pinax starter projects (django templates)
Python
7
star
49

django-site-access

an app to provide utilities via middleware to control access to your django site
Python
7
star
50

cloudspotting

a starter project allowing you to create collections of cloud images, view other people’s collections, “like” a collection, etc.
CSS
7
star
51

pinax-calendars-demo

a demo project for pinax-calendars
Python
7
star
52

pinax-lms-activities

framework and base learning activities for Pinax LMS
Python
7
star
53

atom-format

Python
6
star
54

PinaxCon

PinaxCon is a project that demonstrates how Symposion can be hooked up for a conference site
HTML
6
star
55

pinax-events

a simple app for publishing events on your site
Python
5
star
56

pinax-news

a simple app for publishing links to news articles on your site
Python
5
star
57

pinax-utils

an app for Pinax utilities
Python
5
star
58

blog.pinaxproject.com

Python
5
star
59

pinax-types

Python
4
star
60

cloudspotting2

Pinax demo application showing many Pinax apps
CSS
4
star
61

pinax-project-static

3
star
62

pinax-cart

Python
3
star
63

pinax-identity

OpenID Connect with pinax-api helpers
Python
3
star
64

pinax-theme-classic

the original Pinax theme
HTML
3
star
65

pinax_theme_tester

a project based on the zero starter project used to test and build the pinax theme
Python
3
star
66

screencasts

2
star
67

pinax-project-wiki

a demo starter project for a single wiki site, featuring integration of pinax-wiki
2
star
68

lms-activities-demo

a Django site for demoing Pinax LMS Activities
Python
1
star
69

dashboard.pinaxproject.com

a collection of metrics and information about how the Pinax Project is going
Python
1
star
70

.github

Pinax Default Community Health Files
1
star
71

mytweets

a demo of pinax-types periods
Python
1
star
72

pinax-theme-pinaxproject

a Pinax theme for pinaxproject.com website
HTML
1
star
73

patch-game

guess the Pinax patch
CSS
1
star