
Add Specialization

Show code
views.py Code
import os
import json
from django.http import HttpResponse
from django.conf import settings
from django.shortcuts import render, get_object_or_404
from django.forms.models import model_to_dict
from itertools import chain
from django.core.paginator import Paginator, PageNotAnInteger, EmptyPage
from django.contrib.auth.models import User, Group
from django.contrib.auth.forms import AuthenticationForm
from django.contrib.auth import login, authenticate
from django.contrib import messages
from django.shortcuts import render, redirect
from .throttles import TenCallsPerMinute
from .forms import *
from .models import *
from .paginations import CustomPagination
from .serializers import *
from rest_framework.response import Response
from rest_framework.decorators import api_view, renderer_classes, permission_classes, throttle_classes
from rest_framework import status
if bootcamp.title == 'Aplicaciones Full Stack Python Trainee':
file_path = 'EductecnoPythonBootcamp.pdf'
elif bootcamp.title == 'Emprendimiento digital con TecnologĂas web - with Ruby On Rails programming language':
file_path = 'Emprendimiento web.pdf'
else:
pass
context = {
'bootcamps': bootcamps, 'bootcamp': bootcamp, 'file_path': file_path
}
print(bootcamps)
return render(request, 'bootcamp.html', context)
@throttle_classes([TenCallsPerMinute])
def add_specialization(request, *args, **kwargs):
module_dir = os.path.dirname(__file__)
try:
if request.method == 'POST':
form = CertificationForm(request.POST, request.FILES)
if form.is_valid():
form.save()
return render(request, 'success.html')
else:
form = CertificationForm()
except Exception as e:
print(f'caught {type(e)}: e')
with open(os.path.join(module_dir, "views.py"), 'r') as file:
content = file.readlines()
with open(os.path.join(module_dir, 'forms.py'), 'r') as file:
content2 = file.readlines()
with open(os.path.join(module_dir, 'throttles.py'), 'r') as file:
throttles = file.read()
with open(os.path.join(module_dir, '../mparraf/settings/base.py'), 'r') as file:
form.py Code
from django import forms
from django.forms.widgets import NumberInput
from .models import *
from crispy_forms.helper import FormHelper
from crispy_forms.layout import Layout, Submit
class DateInput(forms.DateInput):
input_type = 'date'
class CertificationForm(forms.ModelForm):
class Meta:
model = Certification
fields = '__all__'
widgets = {'release_date': DateInput()}
upload = forms.FileField()
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.helper = FormHelper()
self.helper.layout = Layout(
'upload',
Submit('submit', 'Upload')
)
widgets = {
'name': forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Input Name of Specialization', }),
'personal_description': forms.Textarea(attrs={'class': 'form-control',
'placeholder': 'Here you can some personal description'}),
'description': forms.Textarea(attrs={'class': 'form-control', 'placeholder': 'Input official descriptionn'}),
'rating': forms.NumberInput(attrs={'class': 'form-control'}),
'release_date': DateInput(),
'web_site': forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Input your feedback'}),
'filePath': forms.TextInput(attrs={'class': 'form-control col-12 col-sm-6'}),
'offered': forms.Select(attrs={'class': 'form-control', "placeholder": "Select Institution / Company",}),
}
settings.py Code
Include Rest Framework in INSTALLED APP Dictionary
'rest_framework',
'rest_framework.authtoken',
# Adding next line to configurate debug toolbar
INTERNAL_IPS = [
'127.0.0.1'
]
# XML settings
REST_FRAMEWORK = {
'DEFAULT_AUTHENTICATION_CLASSES': [
"rest_framework.authentication.BasicAuthentication",
'rest_framework_simplejwt.authentication.JWTAuthentication',
'rest_framework.authentication.TokenAuthentication',
'rest_framework.authentication.SessionAuthentication',
],
'DEFAULT_RENDERER_CLASSES': [
'rest_framework.renderers.JSONRenderer',
'rest_framework.renderers.BrowsableAPIRenderer',
],
'DEFAULT_PARSER_CLASSES': [
'rest_framework.parsers.JSONParser',
],
"DEFAULT_PERMISSION_CLASSES": [
"rest_framework.permissions.IsAuthenticatedOrReadOnly",
],
"DEFAULT_THROTTLE_CLASSES": [
"blog.api.throttling.AnonSustainedThrottle",
"blog.api.throttling.AnonBurstThrottle",
"blog.api.throttling.UserSustainedThrottle",
"blog.api.throttling.UserBurstThrottle",
],
'DEFAULT_THROTTLE_RATES': {
'anon': '20/day',
'user': '5/minute',
'ten': '10/minute,',
"anon_sustained": "500/day",
"anon_burst": "10/minute",
"user_sustained": "5000/day",
"user_burst": "100/minute",
},
"DEFAULT_PAGINATION_CLASS":
"rest_framework.pagination.PageNumberPagination",
"PAGE_SIZE": 100,
"DEFAULT_FILTER_BACKENDS": [
throttles.py Code
from rest_framework.throttling import UserRateThrottle
class TenCallsPerMinute(UserRateThrottle):
scope = 'ten'
Template Code
Django Engine template
{% extends 'base.html' %}
{% block content %}
{% load static %}
{% load fontawesome_5 %}
{{ STATIC_URL }}
{% load pygmentize %}
{% load crispy_forms_tags %}
<br><br>
<section class="container-section mb-4 mt-8">
<div class="container-fluid">
<div class="row g-0">
<div class="portfolio-box-caption">
<div class="row">
<div class="col-1"><img src="{% static 'img/worldwide.gif' %}" alt="Skills"></div>
<div class="col">
<h2 class="portfolio-box-headers" style="text-align:center">
Add Specialization</h2>
</div>
</div>
</div>
<hr>
<div class="container border p-3 mb-3 bg-light text-dark" id="specialization">
<form method="POST" enctype="multipart/form-data">
{% csrf_token %}
<div class="form-group row mt-8">
<div class="col-md-6 mb-0">
{{ form.name|as_crispy_field }}
</div>
<div class="col-md-6 mb-0">
{{ form.offered|as_crispy_field }}
</div>
</div>
<div class="form-row">
{{ form.personal_description|as_crispy_field }}
</div>
<div class="form-row">
{{ form.description|as_crispy_field }}
</div>
<div class="form-group row mt-8">
<div class="col-md-4 mb-0">
{{ form.rating|as_crispy_field }}
</div>
<div class="col-md-4 mb-0">
{{ form.web_site|as_crispy_field }}
</div>
<div class="col-md-4 mb-0">
{{ form.release_date|as_crispy_field }}
</div>
</div>
<div class="form-group row mt-8">
<div class="col-md-6 mb-0">
{{ form.filePath|as_crispy_field }}
</div>
<div class="col-md-6 mb-0">
{{ form.upload|as_crispy_field }}
</div>
</div>
{% if user.is_authenticated %}
<div class="d-grid col-6">
<button type="submit" id="btn-enviar" class="btn btn-warning btn-lg">Enviar</button>
</div>
{% endif %}
</form>
</div>
</div>
</div>
</section>
<section class="container-section mb-4 mt-8">
<div class="container-fluid">
<div class="row g-0">
<div class="portfolio-box-caption">
<div class="row">
<div class="col-1"><img src="{% static 'img/worldwide.gif' %}" alt="Skills"></div>
<div class="col">
<h2 class="portfolio-box-headers" style="text-align:center">
Show code</h2>
</div>
</div>
</div>
<hr>
<div class="container mb-4">
<div class="row mb-4">
<div class="col-sm-6 col-xs-12">
<h4>views.py Code</h4>
<div class="sourcecode">
{{ views|pygmentize:"python3" }}
</div>
</div>
<div class="col-sm-6 col-xs-12">
<h4>form.py Code</h4>
<div class="sourcecode">
{{ forms|pygmentize:"python3" }}
</div>
</div>
</div>
<hr>
<div class="row mb-4">
<div class="col-sm-6 col-xs-12">
<div class="row mb-4">
<h4>settings.py Code</h4>
<p>Include Rest Framework in INSTALLED APP Dictionary</p>
<code>
'rest_framework',
'rest_framework.authtoken',
</code>
<div class="sourcecode">
{{ settings|pygmentize:"python3" }}
</div>
</div>
<hr>
<div class="row mb-4">
<div class="col-sm-6 col-xs-12">
<h4>throttles.py Code</h4>
<div class="sourcecode">
{{ throttles|pygmentize:"python3" }}
</div>
</div>
</div>
</div>
<div class="col-sm-6 col-xs-12">
<h4>Template Code</h4>
<p>Django Engine template</p>
<div class="sourcecode">
{{ template|pygmentize:"html" }}
</div>
</div>
</div>
<hr>
</div>
</div>
</div>
</section>
{% endblock %}