Skip to main content

Powerful and dinamic reservation system in django.

Project description

  • Customizable reservations (you can provide your own reservation model)

    https://github.com/luisza/djreservation/blob/master/demo/img/ReserveObject.png?raw=true
  • Generic reservation create view and reserve product view

    https://github.com/luisza/djreservation/blob/master/demo/img/creating_reservation.png?raw=true
  • Reservation list filter by user

    https://github.com/luisza/djreservation/blob/master/demo/img/userreservationlist.png?raw=true
  • Email notifications with template system

  • Django Admin backend for administrative proposuse like Accept, Borrow, Denied reservations

  • Parcial reservations in admin (Not all products can be borrowed)

    https://github.com/luisza/djreservation/blob/master/demo/img/ReservationAdmin.png?raw=true
  • UI based on Twitter Bootstrap

  • Using i18n to handle translations

Documentation

See in readthedocs.io

Installation

Install with pip

$ pip install django-reservation

In settings.py

Set “djreservation” in your INSTALLED_APPS.

Set ‘djreservation.middleware.ReservationMiddleware’ in MIDDLEWARE

MIDDLEWARE = [
                ...
        'djreservation.middleware.ReservationMiddleware'
]

Configure your email settings

DEFAULT_FROM_EMAIL = "mail@example.com"
EMAIL_HOST = "localhost"
EMAIL_PORT = "1025"

Configure database

Run migrations

python manage.py migrate

In your code

Where you want, create a view for reserve a product

from djreservation.views import ProductReservationView

class MyObjectReservation(ProductReservationView):
        base_model = MyObject     # required
        amount_field = 'quantity' # required
        extra_display_field = ['measurement_unit'] # not required

In urls.py

Append django reservation to urlpatterns

from djreservation import urls as djreservation_urls

urlpatterns = [
        ...
        url(r"^reservation/create$", MyObjectReservation.as_view())
]
urlpatterns += djreservation_urls.urlpatterns

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

django-reservation-0.2.3.tar.gz (49.4 kB view details)

Uploaded Source

File details

Details for the file django-reservation-0.2.3.tar.gz.

File metadata

File hashes

Hashes for django-reservation-0.2.3.tar.gz
Algorithm Hash digest
SHA256 97079778d823e44260105b1947d18e4b69a76dc2d41f9c8f7a83c04f994485bf
MD5 a3cc8d2d6629f4a05c3919b4781946f0
BLAKE2b-256 389ae7f344db7f2f4d07706239c9a6e143cbbc167aa10ce7da0bb7e1039b3078

See more details on using hashes here.

Provenance

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