Git Product home page Git Product logo

duat's Introduction

Duat - A lightweight django UAT feedback tool

This is a simple django application for embedding a lightweight feedback mechanism into you websites. It’s intended primarily as an aid for user acceptance testing, much like Google Feedback. The backend leverages Django’s admin module to provide its functionality.

How to use it

Via the admin interface on the server you set up a ‘Project’. Once done this will provide you with a single custom javascript file which you can embed into your website. Once embedded, the javascript will create a small feedback form on the bottom right of the page. When the user elects to provide feedback they can select any elements on the page which will become highlighted (to indicate the problem areas). After the feedback is submitted, the server generates an image of the page (with highlighted elements) and records the url, user agent and time of submission. Site administrators can then easily view the issues as they come in. You can view the generated image or the html of the problem page.

How it works

The web tool allows the user to highlight different elements on the page (by adding a specific class to those elements). This DOM is then sent to the server where PhantomJS is used to generate a static image of the page and the admin interface lets you view the full page contents.

Installation (Standalone)

  1. Install the Django framework
  2. Download and extract PhantomJS
  3. Checkout this repository.
  4. Edit settings.py:
  • Setup your database as necessary
  • Edit the PHANTOMJS_EXECUTABLE path
  1. Initialise the database (don’t forget to setup an administrator) python manage.py syncdb
  2. Run the server python manage.py runserver 8000

Installation (Shared)

Duat can also be installed alongside other django apps.

  1. Download and extract PhantomJS
  2. Edit settings.py:
  • Add PHANTOMJS_EXECUTABLE=<path_to_phantomjs_binary>
  • Include duat in your INSTALLED_APPS list
  1. Edit your urls.py and include duat
  • url(r'^feedback/', include('duat.urls')),
  1. Run syncdb.

Setup

Once you have the server running, you will first need to set up a site administrator, then create your first project to receive feedback.

  1. Visit the admin page (e.g. http://localhost:8000/admin) and log in using the admin details you just provided.

First create a project administrator (this is the person who can log into the back end to view submissions and receive notifications).

  1. Click the ‘Add’ button next to the Users section.
  2. Enter a username and password and click ‘Save and continue editing’.
  3. On the next screen make sure you check the box next to the Staff status option.
  4. Provide an email address to receive notifications of new feedback submissions.
  5. In the User Permissions box, select 'duat | feedback | Can change feedback' and 'duat | feedback | Readonly Feedback' and click the corresponding arrow to add these to the box on the right.
  6. Save this page.

Now create a Project

  1. Use the ‘Home’ link to go back to the home screen and click ‘Add’ next to the Projects section.
  2. Provide a name for your project and select the project administrator you’ve just created. If you wish to send notifications to this administrator click the ‘Notify admin’ checkbox.
  3. After clicking the Save button you will have set up your first project.

You can then use the javascript link provided on the project screen to embed a <script> tag onto your site. If duat is being used from within your application, you can reference this script with the following:

<script src="{% url 'duat-feedback' project_name='bos2' %}"></script>

The project administrator can log into the admin site and will be able to view the Feedback entries submitted for their corresponding project.

Notes

Inspiration for this system originally came from feedback.js but I found the canvas tainting in chrome to be a blocker for our requirements so I decided to implement a simpler system.

Tested with Django 1.4, 1.5, 1.6, 1.7 & 1.8

duat's People

Contributors

chrispbailey avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

duat's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.