devclub-iitd / ReviewSystem

MIT License
2 stars 6 forks source link
leaderboard profile profiles rating review

Review System

A tool for peer review in an organization. Can give editable ratings, reviews to other people anonymously.

Can see analysis of previous reviews and ratings for each individual.

Installation

First clone the repository using git clone . Then run by any of the methods.

  1. Using Anaconda :
$ conda create -n ReviewSystem python=3.6
$ source activate ReviewSystem
$ pip install -r requirements.txt
  1. Using Virtualenv : Open the ReviewSystem-master folder then type:
    $ virtualenv -p python=3.6 ReviewSystem
    $ . ReviewSystem/bin/activate
    $ pip install -r requirements.txt

After pip installs the requirements, a folder 'migrations' is created in the app 'ratings' and an empty file '\pyinit.py' is added.

Running the app for the first time

Open the review_project folder and execute the following commands

$ mkdir ratings/migrations
$ touch ratings/migrations/__init__.py
$ python manage.py makemigrations
$ python manage.py migrate
$ python manage.py createsuperuser
$ python manage.py runserver

Additionally, go to Django Admin (/admin) and create the first object of Ctrl type with the default parameters.

Each time you want to begin a new session, make a new control object from SudoView (/sudo)

Features

  1. Registration and Login for each user.
  2. Users can view one another using the 'Leaderboard' tab
  3. Leaderboard also works as a gateway to access all other profiles.
  4. User can rate and review for all users except himself.
  5. Rating is given from 1 to 10.
  6. Opening one's own profile shows the username, name current rating and reviews.
  7. One can view his/her own rating only after rating every other person.
  8. One can publicise his/her contribution by adding "works" on own's profile.

To-Do