Skip to main content

A short description of your package

Project description

Django Survey App

This Django application allows you to create and manage surveys including CSAT, NPS, CES, and Generic Surveys. It supports both anonymous and logged-in user responses with user metadata tracking.

Setup and Installation

1. Install the Application

To install the customersatisfactionmetrics package, run the following command:

pip install customersatisfactionmetrics

2. Update Django Settings

Add customersatisfactionmetrics to the INSTALLED_APPS list in your Django project's settings.py file:

INSTALLED_APPS = [
    # ... other installed apps ...
    "django.contrib.admin",
    "django.contrib.auth",
    "django.contrib.contenttypes",
    "django.contrib.sessions",
    "django.contrib.messages",
    "django.contrib.staticfiles",
    "customersatisfactionmetrics",  # Add this line
]

3. Run Migrations

Apply the necessary migrations to your database with the following command:

python manage.py migrate

4. Run the Django Server

Start the Django development server:

python manage.py runserver

Access the admin panel at http://localhost:8000/admin/.

5. Adding Surveys and Questions

  • Navigate to the Django admin site.
  • Use the respective sections to add new surveys and questions.

6. URL Configuration

Include the customersatisfactionmetrics URLs in your project's urls.py file:

from django.urls import path, include

urlpatterns = [
    path('', include('customersatisfactionmetrics.urls')),
    # ... other URL patterns ...
]

Usage

1. Access the Survey

To view a survey, navigate to the URL path survey/slug/<slug> in your web browser, where <slug> is the slug you assigned to the survey in the admin panel. For example:

http://localhost:8000/survey/slug/sample-survey

This URL will display the survey form for users to fill out and submit.

2. Embedding Surveys in Templates

To easily embed a survey in your Django templates, you can use the insert_survey_by_slug template tag. This tag allows you to insert a survey form by its slug directly into a template.

First, load the template tag in your template file:

{% load survey_tags %}

Then, use the insert_survey_by_slug tag to insert a survey form by specifying its slug:

{% insert_survey_by_slug 'your-survey-slug' %}

Replace 'your-survey-slug' with the actual slug of the survey you want to embed. The survey form will be rendered wherever you include this tag in your template.

Example:

<!DOCTYPE html>
<html>
<head>
    <title>Survey Page</title>
</head>
<body>
    <h1>Survey Form</h1>
    {% load survey_tags %}
    {% insert_survey_by_slug 'sample-survey' %}
</body>
</html>

This method provides a flexible way to integrate surveys into various parts of your Django application without the need for additional view logic or URL configurations.

Features

  • Supports various survey types: CSAT, NPS, CES, and Generic.
  • Allows both anonymous and logged-in user responses.
  • Tracks user metadata like IP address and user agent.

Contributing

Contributions to this project are welcome. Please fork the repository and submit a pull request.

License

This project is licensed under MIT License. See the LICENSE file in the respective folders for more details.

Contact

For any queries or further information, please contact us at devops@pescheck.nl.

Thank you for your interest in our Django Survey Project!

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

customersatisfactionmetrics-1.0.6.tar.gz (18.0 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file customersatisfactionmetrics-1.0.6.tar.gz.

File metadata

File hashes

Hashes for customersatisfactionmetrics-1.0.6.tar.gz
Algorithm Hash digest
SHA256 bc7f35ed30765ecaedbf84fb432afde8759427b9cecaa9900befb0c2c7842bd3
MD5 b6fb3333836ac49dcff3bf8ae60940e0
BLAKE2b-256 6e97a3f94f5188108b5f7de2f4ada79e67c311193057fe744909fb80fdb646fb

See more details on using hashes here.

File details

Details for the file customersatisfactionmetrics-1.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for customersatisfactionmetrics-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 e93265e33f9879c767c97f077311fde0d181f40a62f0e78b631da07056b49641
MD5 06d5d1afd1c9d3f6f1d1722e0b57018c
BLAKE2b-256 9c34bba171b2dca10db5dc473ca83d89726d94e504e1c95e48499fc34f71a3bd

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