/Space-Contractor-V2

This project is for the purpose of creating a website for the Space Explorer in us! Buy futuristic Space Tech items!

Primary LanguageJavaScript

Space Contractor!

I-Planetary

Image

Motivation

Build Futuristic Space Items

For this project I am going to re-create my original Contractor project from BEW 1.1. This way I can both upgrade that project and still be able to apply what I've learned from the Django web framework.

This project is for the purpose of creating a website for the Space Explorer in us! As the site admin, I will be able to take in requests from users for different Space Tech items to be created especially for them! (Space Contracting~~)

Proposal

Contractor Proposal

Live Site

Contractor V2

Built With

Code Example

def signup(request):
    if request.method == 'POST':
        form = UserSignUpForm(request.POST)
        if form.is_valid():
            form.save()
            username = form.cleaned_data.get('username')
            messages.success(request, f'Your account has been created {username}! ')
            return redirect('index')
    else:
        form = UserSignUpForm()
    return render(request, 'users/signup.html', {'form': form})

How to Use

Visit the Live Site! Test out Functionality and Enjoy! OR See Installation Instructions

Installation

  1. Clone repo to local device git clone https://github.com/RobotGyal/Space-Contractor-V2
  2. Install dependencies (see requirements.txt)
  3. In command line run `python3 manage.py runserver'

Contribute

Please leave feedback, bugs, etc. to this project by leaving comments and issues!

Credits

Contractor Project