mirror of
https://github.com/Rushilwiz/lettertofcps.git
synced 2025-04-03 19:00:17 -04:00
initial commit
This commit is contained in:
commit
874a8f020b
31
.gitignore
vendored
Normal file
31
.gitignore
vendored
Normal file
|
@ -0,0 +1,31 @@
|
|||
# Django #
|
||||
*.log
|
||||
*.pot
|
||||
*.pyc
|
||||
__pycache__
|
||||
db.sqlite3
|
||||
media
|
||||
|
||||
# Backup files #
|
||||
*.bak
|
||||
|
||||
# Python #
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# Environments
|
||||
.env
|
||||
.venv
|
||||
env/
|
||||
venv/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
|
||||
|
||||
# Sublime Text #
|
||||
*.tmlanguage.cache
|
||||
*.tmPreferences.cache
|
||||
*.stTheme.cache
|
||||
*.sublime-workspace
|
||||
*.sublime-project
|
0
__init__.py
Normal file
0
__init__.py
Normal file
16
asgi.py
Normal file
16
asgi.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
"""
|
||||
ASGI config for config project.
|
||||
|
||||
It exposes the ASGI callable as a module-level variable named ``application``.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/3.1/howto/deployment/asgi/
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from django.core.asgi import get_asgi_application
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
|
||||
|
||||
application = get_asgi_application()
|
0
config/__init__.py
Normal file
0
config/__init__.py
Normal file
16
config/asgi.py
Normal file
16
config/asgi.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
"""
|
||||
ASGI config for config project.
|
||||
|
||||
It exposes the ASGI callable as a module-level variable named ``application``.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/3.1/howto/deployment/asgi/
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from django.core.asgi import get_asgi_application
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
|
||||
|
||||
application = get_asgi_application()
|
137
config/settings.py
Normal file
137
config/settings.py
Normal file
|
@ -0,0 +1,137 @@
|
|||
"""
|
||||
Django settings for config project.
|
||||
|
||||
Generated by 'django-admin startproject' using Django 3.1.1.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/3.1/topics/settings/
|
||||
|
||||
For the full list of settings and their values, see
|
||||
https://docs.djangoproject.com/en/3.1/ref/settings/
|
||||
"""
|
||||
|
||||
from pathlib import Path
|
||||
from my_secrets import secrets
|
||||
import os
|
||||
|
||||
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
||||
BASE_DIR = Path(__file__).resolve().parent.parent
|
||||
|
||||
|
||||
# Quick-start development settings - unsuitable for production
|
||||
# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/
|
||||
|
||||
# SECURITY WARNING: keep the secret key used in production secret!
|
||||
SECRET_KEY = secrets.SECRET_KEY
|
||||
|
||||
# SECURITY WARNING: don't run with debug turned on in production!
|
||||
DEBUG = True
|
||||
|
||||
ALLOWED_HOSTS = ['*']
|
||||
|
||||
|
||||
# Application definition
|
||||
|
||||
INSTALLED_APPS = [
|
||||
'pages.apps.PagesConfig',
|
||||
'django.contrib.admin',
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
'django.contrib.sessions',
|
||||
'django.contrib.messages',
|
||||
'django.contrib.staticfiles',
|
||||
'django_secrets',
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
'django.middleware.security.SecurityMiddleware',
|
||||
'django.contrib.sessions.middleware.SessionMiddleware',
|
||||
'django.middleware.common.CommonMiddleware',
|
||||
'django.middleware.csrf.CsrfViewMiddleware',
|
||||
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
||||
'django.contrib.messages.middleware.MessageMiddleware',
|
||||
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
||||
]
|
||||
|
||||
ROOT_URLCONF = 'config.urls'
|
||||
|
||||
TEMPLATES = [
|
||||
{
|
||||
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
||||
'DIRS': [],
|
||||
'APP_DIRS': True,
|
||||
'OPTIONS': {
|
||||
'context_processors': [
|
||||
'django.template.context_processors.debug',
|
||||
'django.template.context_processors.request',
|
||||
'django.contrib.auth.context_processors.auth',
|
||||
'django.contrib.messages.context_processors.messages',
|
||||
],
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
WSGI_APPLICATION = 'config.wsgi.application'
|
||||
|
||||
|
||||
# Database
|
||||
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases
|
||||
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': BASE_DIR / 'db.sqlite3',
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
# Password validation
|
||||
# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators
|
||||
|
||||
AUTH_PASSWORD_VALIDATORS = [
|
||||
{
|
||||
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
|
||||
},
|
||||
{
|
||||
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
|
||||
},
|
||||
{
|
||||
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
|
||||
},
|
||||
{
|
||||
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
# Internationalization
|
||||
# https://docs.djangoproject.com/en/3.1/topics/i18n/
|
||||
|
||||
LANGUAGE_CODE = 'en-us'
|
||||
|
||||
TIME_ZONE = 'UTC'
|
||||
|
||||
USE_I18N = True
|
||||
|
||||
USE_L10N = True
|
||||
|
||||
USE_TZ = True
|
||||
|
||||
|
||||
# Email
|
||||
|
||||
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
|
||||
|
||||
EMAIL_HOST = 'smtp.gmail.com'
|
||||
EMAIL_USE_TLS = True
|
||||
EMAIL_PORT = 587
|
||||
EMAIL_HOST_USER = secrets.EMAIL_USER
|
||||
EMAIL_HOST_PASSWORD = secrets.EMAIL_PASSWORD
|
||||
|
||||
# Static files (CSS, JavaScript, Images)
|
||||
# https://docs.djangoproject.com/en/3.1/howto/static-files/
|
||||
|
||||
STATIC_URL = '/static/'
|
||||
STATICFILES_DIRS = [
|
||||
os.path.join(BASE_DIR, "static"),
|
||||
]
|
21
config/urls.py
Normal file
21
config/urls.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
"""config URL Configuration
|
||||
|
||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
||||
https://docs.djangoproject.com/en/3.1/topics/http/urls/
|
||||
Examples:
|
||||
Function views
|
||||
1. Add an import: from my_app import views
|
||||
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
||||
Class-based views
|
||||
1. Add an import: from other_app.views import Home
|
||||
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
||||
Including another URLconf
|
||||
1. Import the include() function: from django.urls import include, path
|
||||
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
||||
"""
|
||||
from django.contrib import admin
|
||||
from django.urls import path, include
|
||||
|
||||
urlpatterns = [
|
||||
path('', include('pages.urls')),
|
||||
]
|
16
config/wsgi.py
Normal file
16
config/wsgi.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
"""
|
||||
WSGI config for config project.
|
||||
|
||||
It exposes the WSGI callable as a module-level variable named ``application``.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/3.1/howto/deployment/wsgi/
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from django.core.wsgi import get_wsgi_application
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
|
||||
|
||||
application = get_wsgi_application()
|
25
manage.py
Executable file
25
manage.py
Executable file
|
@ -0,0 +1,25 @@
|
|||
#!/usr/bin/env python
|
||||
"""Django's command-line utility for administrative tasks."""
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
||||
def main():
|
||||
"""Run administrative tasks."""
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
|
||||
try:
|
||||
from django.core.management import execute_from_command_line
|
||||
except ImportError as exc:
|
||||
raise ImportError(
|
||||
"Couldn't import Django. Are you sure it's installed and "
|
||||
"available on your PYTHONPATH environment variable? Did you "
|
||||
"forget to activate a virtual environment?"
|
||||
) from exc
|
||||
execute_from_command_line(sys.argv)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
from django_secrets.startup import check
|
||||
check()
|
||||
|
||||
main()
|
1
my_secrets/.gitignore
vendored
Normal file
1
my_secrets/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
secrets.py
|
0
my_secrets/__init__.py
Normal file
0
my_secrets/__init__.py
Normal file
13
my_secrets/definitions.py
Normal file
13
my_secrets/definitions.py
Normal file
|
@ -0,0 +1,13 @@
|
|||
# coding=utf-8
|
||||
|
||||
# Add your secrets to this list and run manage.py to set their values.
|
||||
# Use them in settings.py like this:
|
||||
# from secrets import secrets
|
||||
# SECRET_KEY = secrets.SECRET_KEY
|
||||
|
||||
SECRET_KEYS = [
|
||||
# start with your Django secret key like this:
|
||||
"SECRET_KEY",
|
||||
"EMAIL_USER",
|
||||
"EMAIL_PASSWORD"
|
||||
]
|
0
pages/__init__.py
Normal file
0
pages/__init__.py
Normal file
3
pages/admin.py
Normal file
3
pages/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
pages/apps.py
Normal file
5
pages/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class PagesConfig(AppConfig):
|
||||
name = 'pages'
|
0
pages/migrations/__init__.py
Normal file
0
pages/migrations/__init__.py
Normal file
3
pages/models.py
Normal file
3
pages/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
34
pages/templates/pages/base.html
Normal file
34
pages/templates/pages/base.html
Normal file
|
@ -0,0 +1,34 @@
|
|||
{% load static %}
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<!-- Required meta tags -->
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="{% static 'css/styles.css' %}">
|
||||
|
||||
<!-- Bootstrap CSS -->
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
|
||||
|
||||
<title>Letter to FCPS</title>
|
||||
</head>
|
||||
<body>
|
||||
{% block content %}{% endblock content %}
|
||||
<footer class="text-muted">
|
||||
<div class="container">
|
||||
<p class="float-right">
|
||||
<a href="#">Back to top</a>
|
||||
</p>
|
||||
<p>website created and hosted with ❤ from <a href="https://github.com/rushilwiz">rushil umaretiya ('23)</a> <br><small> please be nice to my webserver</small></p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
|
||||
<script src="{% static 'js/clipboard.js' %}"></script>
|
||||
<script src="{% static 'js/main.js' %}"></script>
|
||||
</body>
|
||||
</html>
|
77
pages/templates/pages/email.html
Normal file
77
pages/templates/pages/email.html
Normal file
|
@ -0,0 +1,77 @@
|
|||
{% extends 'pages/base.html' %}
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="text-center text-fluid">
|
||||
<h1 class="mt-5 mb-2">Thanks for your support!</h1>
|
||||
<p class="lead">Your email has been sent!</p>
|
||||
<hr>
|
||||
<h3 class="text-center mt-4 mb-4">Thanks for all your help! We sent your letter along to the school board, but if you'd like to send your own, just follow these instructions:</h3>
|
||||
<ol class="text-left">
|
||||
<h3><li>First, copy the letter
|
||||
<button type="button" onclick="copyLetter()" id="copyLetterButton" data-clipboard-target="#letter" class="btn btn-secondary">Copy</button></li></h3>
|
||||
<div id="letter">
|
||||
<strong><p>Dear FCPS School Board members and Virginia State Legislators,</p></strong>
|
||||
<p>We, as current students of TJHSST, write to you today in response to the merit lottery proposal for TJ admissions. The board’s proposition is rushed, unfair, and stands against the values of TJ. While I acknowledge that the lack of diversity at our school is an urgent issue, this proposal is not the answer.</p>
|
||||
<p>The current application process is race-blind, upholds the values of meritocracy, and seeks to determine the individuals who are the most passionate about STEM. While I understand the current admissions process has many shortcomings, which I offer alternatives to, the new proposal fails to solve these issues and creates a plethora of new problems. </p>
|
||||
<p>TJHSST is a unique community built on its passion for learning. I agree that everyone in Northern Virginia should be given a fair chance towards TJ’s educational opportunities. The disadvantages that lower-income and minority students face arecreated far before an applicant sits down to take the TJ test, and that is the problem we, as a school, as a community, and as a state, need to address. In this letter, I detail alternative solutions for these disadvantages that I feel could effectively help TJ demographics better reflect those of Fairfax County in the long term.</p>
|
||||
<h1><strong>Concerns with the current proposal</strong></h1>
|
||||
<p><em>The proposed lottery process was first introduced to the public on September 15th, with a decision required to be made on October 8th. I would like the board to recognize the ramifications of rolling out such a sweeping policy on such a short timeline. The proposal is incredibly vague on many fronts and was not created with sufficient community input. </em></p>
|
||||
<p><strong>The proposal is rushed and largely fails to take into account the opinions of members of the current TJ community.</strong></p>
|
||||
<p>It was given three weeks in the public’s eye, and I feel the timeline doesn’t give an appropriate amount of time for the board to receive and process the much-needed community input that plays a crucial role in board proceedings. The normal town hall format would consist of a large meeting with many members of the community from all sides of the debate providing their input on any given policy, and due to the current pandemic, this is simply not possible, however, the alternative that the board has provided seems to be quite unequal to the community input provided during the normal town hall. The board and state have both hosted multiple “town halls” on virtual meeting platforms such as Zoom, which include minimal ways for community members to provide input on the proposal. These town halls have proven that the input provided during the meetings has been ignored, and hosts have explicitly stated that they will not be addressing questions posted in the Q&A or Chatbox, and so I ask that the board commit to providing a better platform for students, parents, and other community members to provide their feedback and thoughts.</p>
|
||||
<p><strong>The proposal is extremely vague.</strong></p>
|
||||
<p>I do not know the weight of the SIS essays in the proposed admissions system, whether there are different priority lottery pathways, or if the lottery pathways are solely regional. Because these are not defined, those who support the lottery have no clear idea of what they are supporting. In addition, the lottery system is now subject to last-minute changes away from the public’s eye, which is a poor decision to make considering the wide-spread implications of the system.</p>
|
||||
<p><br /><br /></p>
|
||||
<p><em>The proposed process removes aspects of the TJHSST application process which I believe are equitable measures of a student’s success.</em></p>
|
||||
<p><strong>Admissions testing helps to select students who will thrive at TJ.</strong></p>
|
||||
<p>The TJ experience is challenging for all students as many classes are extremely rigorous and require a strong drive for success. Admissions testing helps to select students who will be able to do well in these classes and succeed in the high-stress environment. The removal of a merit-based exam ignores the fact that the education quality across Fairfax County is not consistently rigorous, especially in core STEM classes such as Mathematics and Science. While changes in the admissions testing system are a step in the right direction, they don’t resolve the deep-rooted inequities within FCPS school systems.</p>
|
||||
<p><strong>Teacher recommendations and essays are one of </strong><strong>the most equitable ways</strong><strong> to understand a student beyond their test scores, and removing them is counterproductive.</strong></p>
|
||||
<p>Students cannot take a prep class to show their passion for STEM to their teachers; the passion will be apparent to the teachers through extensive participation in class and the pursuit of complex subjects beyond the classroom. Letters of recommendation and SIS essays are also an essential way for students to demonstrate their aspirations and personality. Without this representation, students who demonstrate a passion for STEM but score poorly on tests would be overlooked during the application process. </p>
|
||||
<p><strong>The proposed process adds a significant amount of random chance that is blind to student merit</strong>.</p>
|
||||
<p>Although the merit lottery system offers an equal chance of admission, accepted candidates will not necessarily be the most qualified.Rather than artificially bolstering diversity at TJ through random chance, I should be seeking to equalize applicant opportunities and chances of admission across all socioeconomic backgrounds <em>before</em> the application process. A merit lottery system is likely to stigmatize disadvantaged students, insinuating that they were accepted because of chance, not qualifications or effort. Accepted applicants may feel as if their hard work in middle school did not positively affect their admission, while rejected applicants may feel that their spot was “stolen” by someone less qualified.[4]</p>
|
||||
<p><strong>Creating a lottery creates an influx of applicants who are not a great fit for TJ. </strong></p>
|
||||
<p> In January 2016, millions of Americans bought $2 or $3 Powerball tickets for a chance at claiming a $1.5 billion jackpot, the largest in US history. The players were not particularly intent on winning the lottery— most didn’t expect to walk away as billionaires, but the potential reward incentivized them to enter. Similarly, the proposed merit lottery has the potential to discourage students from working hard to earn admission as it will attract-- and accept-- applicants who are not fully prepared for the rigorous courses and as a result will be unable to succeed at TJ. This will likely end up fostering a more stressful environment for the TJ community. Additionally, teachers go to amazing lengths to help students who seek their assistance and the school is built around assisting those that want further guidance and opportunities. Admitting more students who are not interested in taking advantage of these resources only breeds a sense of apathy about pursuing one’s interests and working together to solve problems; it not only harms the very foundation this school is built on but also fails to help students or teachers.</p>
|
||||
<p><strong>The merit lottery system may not increase diversity/representation.</strong></p>
|
||||
<p>The current TJ demographic is extremely disproportionate to the surrounding population, but not due to the admissions process. The number of Black and Latinx students who apply to TJ is also disproportionately low compared to that of Asian and Caucasian applicants. Under the proposed system, county demographics will still not be properly reflected if the number of applicants from these populations stay low. Unfortunately, there is a lack of input around the county from historically underrepresented populations about their views on TJ. Under the current proposal, success would remain hollow even if applicant numbers were to rise because these disadvantaged populations are still not given the resources to thrive at TJ. </p>
|
||||
<p><em>The regional quota system creates a synthetic version of diversity that only looks good on paper while creating additional problems.</em></p>
|
||||
<p><strong>The quota system does not solve the diversity issue at its TJ. Those who have limited exposure to STEM are not likely to apply, much less do well at TJ. </strong></p>
|
||||
<p>Instead of restricting the number of acceptances for each region of Northern Virginia, I should be seeking to level the playing field. The reality is, by enforcing a regional quota, many highly qualified students who deserve to attend TJ would lose the opportunity to come. Selecting the student body through a lottery may increase TJ drop out rates and result in lowered standards and course depth to accommodate students who are not ready for the rigor of TJ. This will take away an essential part of what makes TJ special—its unique variety of advanced classes not offered in base schools. It might similarly also cause a decrease in the amount of interaction I can have with outside companies, as TJ students will no longer be able to meet the demands of the companies they interact with. I believe that when academic readiness and diversity throughout the county overlap, diversity within TJ will happen naturally. Instead of enforcing artificial quotas, I should seek to improve educational equity throughout the entire county. Diversity is not a number, it is an environment.</p>
|
||||
<p><strong>Regional quotas give some applicants an unfair advantage based on where they live and may have consequences beyond diversity at TJ.</strong></p>
|
||||
<p>The current proposal’s lottery pathways have been organized in such a way thatIn the way that the lottery pathways have been organized, many schools with historically high TJ acceptance rates which often have large numbers of students accepted into TJproduce a large proportion of TJ acceptance are grouped together (for example, Carson and Cooper in Region 1 and Longfellow and Kilmer in Region 2) while schools that traditionally do not produce as many TJ acceptances have one regional pathway for themselves. This heavily increases competition in regions where there has traditionally been a larger amount of TJ applicants and acceptances and leads to more qualified applicants being barred from TJ while those who are less qualified would be accepted, simply because they live in a different region. Furthermore, as parents realize that living in a certain place could mean that their child would be at a disadvantage may cause them to move away from the place. This may have economic implications as well: as individuals move away from a certain area, many local businesses (even outside of those directly affected such as prep classes) within that area would subsequently suffer from the decrease in patronage</p>
|
||||
<h1><strong>Our proposals</strong></h1>
|
||||
<p><em>“There are a thousand hacking at the branches of evil to one who is striking at the root.”</em></p>
|
||||
<p><em>~ Henry David Thoreau</em></p>
|
||||
<p>The core principle of our proposals is two-fold: First, to try to level the playing field for disadvantaged students far earlier in the game. Yes, this proposal requires significant investment in schools that serve disadvantaged students. Yes, it is expensive. Yes, it will take more time than eliminating the admissions standards for TJ. Altering the TJ admissions process is a band-aid solution that fixes the problem on paper, but the inherent problem of educational inequity is still maintained throughout the county. I believe that our proposals will help to mitigate the overarching problem in the long term, and as a result, will also increase TJ’s diversity while maintaining the educational excellence that makes TJ special.</p>
|
||||
<p><strong>Increase targeted recruitment for TJ applicants at all regional middle schools</strong></p>
|
||||
<p>Many middle schools, particularly ones in low-income areas, barely mention TJHSST applications, so I should be encouraging applications to TJ and especially encouraging people to pursue their goals in STEM. Schools that neglect to talk about TJ are doing a disservice to students who truly have a passion for STEM and would benefit from a rigorous high-level education like TJ. To significantly increase awareness of the possibility of applying to TJ, the Fairfax County School Board should consider making admission outreach mandatory for all middle schools in the county. Our proposal for implementing this is to have TJ student ambassadors be part of the outreach process, and help encourage middle schoolers, especially those that do not send many students to TJ, to apply. Further, information about admissions deadlines and content should be given directly to the student through their FCPS email.</p>
|
||||
<p><strong>Remove the groupings based on “capability” between AAP and Gen-Ed in the early grades</strong></p>
|
||||
<p>Separation based on intellect starts very early on in the public school process, as early as 1st and 2nd grades when students are divided into the Advanced Academics Program (AAP) and General Education (Gen-Ed). Teachers often state without any constraint that AAP students are expected to be “more capable” and learn at a “faster pace”. Additionally, despite the IOWA being required to be administered for everyone in the AAP program in 6th grade, it is not required for the Gen-Ed students. The majority of students are not even aware that the IOWA can be administered to students not enrolled in AAP. This single distinction prevents many students from applying to TJ and succeeding on the admissions test as passing the IOWA is required to take Algebra I in seventh grade, which is a prerequisite for getting into TJ. Those who take Algebra I in eighth grade are eligible to apply; however, the math portion of the test is written as if the student has already taken Algebra I when in reality those who take Algebra I in eighth grade have not covered the majority of the content yet. Overall, non-AAP students are at a much greater disadvantage because of a distinction made early on, preventing them from being best prepared to apply to and thrive at TJ.</p>
|
||||
<p>Additionally, empirical studies done of FCPS indicate that the Gen-Ed students are often of ethnic minorities: 19% of the students in FCPS are eligible for level 4, but only 12% of black students and 7%[3] of Latinx students are included in this group<strong>. </strong>Unlike the current proposal for changing TJ admissions, this attacks the underlying problems and is built on providing equal opportunity rather than having random admission. Doing this will make the TJ admissions process more inclusive in the long term and will also help increase educational equity in FCPS as a whole.</p>
|
||||
<p><strong>Collect meaningful data from the minorities around the county about their views on TJ</strong></p>
|
||||
<p>The current proposal is at best a rushed decision without consideration of any actual data. The highlight of the proposal seems to be that everything else has failed, but the universal problem is the lack of communication with those to whom it pertains. There have been some weak attempts to help create opportunities to help boost minority acceptance rates, but they were so poorly advertised that most FCPS students have never heard of them. Students in schools with fewer resources have never been asked how they view TJ or even if they have heard of TJ. Lacking such basic data means that any proposal is blindly shooting without having any real target. This is particularly true in the case of the merit lottery system since the lack of admissions for students of color could very likely be due to a lack of applicants. This means that the current system is most likely to inflate the white student populations while deflating the Asian populations, becoming almost the exact opposite of the goal. Simultaneously, it would guarantee that heavy feeder schools like Rachel Carson Middle School, where TJ is made commonly known to the students, would maintain its dominant feeder status.</p>
|
||||
<p><strong>I agree that the application fee should be removed/reduced.</strong></p>
|
||||
<p>I believe it would be a good way to create equal opportunity among the applicants.</p>
|
||||
<p><strong>Make the test less preparable.</strong></p>
|
||||
<p>While an admissions test is necessary, the current admissions test is flawed. Wealthier TJ applicants often attend private tutoring classes to prepare for the TJ admissions test. Creating a test that measures critical thinking, logic, and creative problem solving over standardized testing skills would help to eliminate the advantage that students who pay for private tutoring have. This was implemented for the Class of 2022 admissions with the introduction of the Quant-Q, and I saw noticeable differences in class demographics. This concept should be expanded and improved over time, as opposed to the single update that the Quant-Q brought.</p>
|
||||
<p>Another idea to make the tests less preparable would be to create a test in which students are given a concept to learn for about 20-30 minutes, and then given one or more problems to solve using the concept which they were just taught. Many prestigious math competitions (ex. ARML, PuMAC, CMIMC) use a version of this testing structure in a round known as power rounds, where competitors are introduced to a brand-new scenario and must solve problems regarding the scenario, often without being able to use known information and instead of having to largely rely on their problem-solving skills. This idea can also be applied to topics within logic, science, and engineering; national competitions such as Science Olympiad (ex. The events Codebusters and Experimental Design) and Future Problem Solving both utilize events of such formats.</p>
|
||||
<p><strong>Provide school profiles in each application to provide a more thorough understanding of the opportunities that each applicant has access to </strong></p>
|
||||
<p><br /><br /></p>
|
||||
<p><strong>Offer more opportunities for one-on-one help within public schools</strong></p>
|
||||
<p>Many students in higher-income neighborhoods have parents who attended higher-level education and can assist students with their coursework by teaching them or paying for classes. Not everyone’s parents can teach or afford STEM classes, so this puts some students at a disadvantage as there are fewer opportunities for one-on-one help. In middle schools particularly, there should be more opportunities for students to get tutoring with their teachers outside of school hours. Additionally, teachers (especially those who teach STEM classes) should increase awareness of free websites and resources that could help the students understand the content and delve deeper into the subject. If sufficient resources to enrich students’ learning were made available to all who wanted to access them, then a fair admissions test would be much more effective at testing students’ empirical knowledge.</p>
|
||||
<p><strong>Encourage and fund STEM programs in middle and elementary schools with higher populations of disadvantaged students.</strong></p>
|
||||
<p>Just like with varsity sports, the slots should go to the most qualified students. For TJ, that currently heavily favors those who have the resources to prepare for the test and while you can certainly make the test less prep-able, no one will be able to eliminate the advantage that these students have. By funding more free programs in FCPS schools for students without these resources, you can give resources to disadvantaged students to help them be able to properly prepare for the tests and ensure that all the students that walk in on test day do so on an equal playing field and offers are given to students who truly have the greatest potential to succeed here.</p>
|
||||
<p><strong>Create public makerspaces for STEM work.</strong></p>
|
||||
<p>One of the reasons people have pointed out for feeling unwelcome or disadvantaged in STEM learning is that they had fewer opportunities to pursue STEM activities before middle and high schools. If Fairfax County can host public maker spaces for STEM, it will introduce people to STEM activities at a younger age and allow them to discover their passions. This will allow them to develop STEM skills at their own pace and realize if they want to pursue TJ from early on.</p>
|
||||
<h1><strong>Final Thoughts</strong></h1>
|
||||
<p>I acknowledge that there is not an all-encompassing solution to foster a diverse learning environment at TJ. Superficial solutions may produce favorable results in the short-term, but they fail to properly address the root issue. The process will be long and tough, but with action from every corner of the community, it can be achieved.</p>
|
||||
<p>I believe that instead of hastily trying to “fit” in more diversity at TJ, I should be starting from a fundamental level to make education an experience that allows everyone an equal opportunity; only then will diversity within the TJ community flourish naturally.</p>{{form.message}}<br />
|
||||
<p><strong>I hope the board will reconsider accepting the proposed changes to the TJ Admissions process and seek solutions that will address the root of the diversity issue at our school. Thank you.</strong></p><br /> Sincerely, <br>{{form.name}}</div>
|
||||
<h3><li>Second, <a href="{{mailto}}" class="btn btn-info">click here, paste the letter, and hit send!</a></li>
|
||||
</h3>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
66
pages/templates/pages/email_template.html
Normal file
66
pages/templates/pages/email_template.html
Normal file
|
@ -0,0 +1,66 @@
|
|||
<p>A message to the school board from {{form.name}}. Please reply to this member of the community to their email at {{form.email}}</p>
|
||||
|
||||
<h1>Dear FCPS School Board members and Virginia State Legislators,</h1>
|
||||
<p>We, as current students of TJHSST, write to you in response to the merit lottery proposal for TJ admissions. From the first day we set foot into the school, we were welcomed to an extraordinary community which allowed us to pursue our passions and connect with those who shared our interests. We care deeply about TJ and its future, and while we acknowledge that the lack of diversity at our school is an urgent issue, this proposal is not the answer. The board’s proposition is rushed, unfair, and stands against the values of TJ. </p>
|
||||
<p>The current application process is race-blind, upholds the values of meritocracy, and seeks to determine the individuals who are the most passionate about STEM. While we understand that the current admissions process has many shortcomings, the new proposal fails to solve these issues and creates a plethora of new problems.</p>
|
||||
<p>TJHSST is a unique community built on its passion for learning. We agree that everyone in Northern Virginia should be given a fair chance towards TJ’s educational opportunities. The disadvantages that lower-income and minority students face arecreated far before an applicant sits down to take the TJ test, and that is the problem we, as a school, as a community, and as a state, need to address. In this letter, we detail alternative solutions that we feel would effectively help TJ demographics better reflect those of Fairfax County in the long term.</p>
|
||||
<h1><strong>Concerns with the current proposal</strong></h1>
|
||||
<p><em>The proposed lottery process was first introduced to the public on September 15th, with a decision required to be made on October 8th. We would like the board to recognize the ramifications of rolling out such a sweeping policy on such a short timeline. </em></p>
|
||||
<p><strong>The proposal is rushed and largely fails to take into account the opinions of members of the TJ community.</strong></p>
|
||||
<p>It was given three weeks in the public’s eye, and we feel the timeline doesn’t give an appropriate amount of time for the board to receive and process the much-needed community input that plays a crucial role in board proceedings. The board and state have both hosted a few “town halls” on virtual meeting platforms such as Zoom, which include minimal ways for community members to provide input on the proposal. These town halls have proven that the input provided during the meetings has been ignored, and hosts have explicitly stated that they will not be addressing questions posted in the Q&A or chat box. We ask that the board commits to providing a better platform for students, parents, and other community members to provide their feedback and thoughts.</p>
|
||||
<p><strong>The proposal is extremely vague.</strong></p>
|
||||
<p>Almost no specific information is provided to the public. We do not know the weight of the SIS essays in the proposed admissions system, what the proposed “questionnaires” actually are, whether there are different priority lottery pathways, or if the lottery pathways are solely regional. Because these are not defined, those who support the lottery have no clear idea of what they are supporting. In addition, the lottery system is now subject to last-minute changes away from the public’s eye, which is a poor decision considering the wide-spread implications of the system.</p>
|
||||
<p><strong>The lottery systems examples are cherry-picked and largely inapplicable.</strong></p>
|
||||
<p>The proposal lists five schools as evidence of high functioning lottery admission schools. Among them, BASIS Arizona is a charter school, bound to different state and local regulations. In addition, the lottery system fails to reflect diversity in the area. For example, at BASIS Arizona Chandler, 68% of students are Asian, compared to 3% in the surrounding area. Gwinnett School of Mathematics, Science and Technology in Georgia has a total of 706 applicants for the lottery pool, in which 590 were admitted. They also require math end of course and SAT/PSAT cutoff scores to register. International Community School of Washington state does have a lottery admission system, but it occurs in 6th grade, not 9th grade where children's talents and abilities are much more defined. Loveless Academic Magnet Program High School has a total enrollment of only 514 students. Admissions is not just due to a lottery but also a review of academic records and completion of a personal interview. Raisbeck Aviation High School only takes 105 kids a year and is highly specialized. We find it disappointing that the current proposal cited schools simply for the fact that they have a lottery system without observing the specifics of the systems or the results those systems produced.</p>
|
||||
<p><em>The proposed process removes aspects of the TJHSST application process which we believe are equitable measures of a student’s success.</em></p>
|
||||
<p><strong>Admissions testing is critical to select students who will thrive at TJ.</strong></p>
|
||||
<p>The TJ experience is challenging for all students as many classes are extremely rigorous and require a strong drive for success. Admissions testing helps to select students who will be able to do well in these classes and succeed in the high-stress environment. The removal of a merit-based exam ignores the fact that the education quality across Fairfax County is not consistently rigorous, especially in core STEM classes such as Mathematics and Science. While the current admissions system is imperfect, removing it doesn’t resolve the deep-rooted inequities within FCPS school systems.</p>
|
||||
<p><br /><br /></p>
|
||||
<p><strong>The current proposal adds a significant amount of random chance that is blind to student merit</strong>.</p>
|
||||
<p>Although the merit lottery system offers an equal chance of admission, accepted candidates will not necessarily be the most qualified.Rather than artificially bolstering diversity at TJ through random chance, we should look to equalize applicant opportunities and chances of admission across all socioeconomic backgrounds <em>years before</em> the application process. A merit lottery system is likely to stigmatize disadvantaged students, insinuating that they were accepted because of chance, not qualifications or effort. Accepted applicants may feel as if their hard work in middle school did not positively affect their admission, while rejected applicants may feel that their spot was “stolen” by someone less qualified.[4]</p>
|
||||
<p><strong>Creating a lottery creates an influx of applicants who are not a great fit for TJ. </strong></p>
|
||||
<p> In January 2016, millions of Americans bought $2 or $3 Powerball tickets for a chance at claiming a $1.5 billion jackpot, the largest in US history. The players were not particularly intent on winning the lottery— most didn’t expect to walk away as billionaires, but the potential reward incentivized them to enter. Similarly, the proposed merit lottery has the potential to discourage students from working hard to earn admission as it will attract-- and accept-- applicants who are not fully prepared for the rigorous courses and as a result will be unable to succeed at TJ. This will likely end up fostering a more stressful environment for the TJ community. Additionally, teachers go to amazing lengths to help students who seek their assistance and the school is built around assisting those that want further guidance and opportunities. Admitting more students who are not interested in taking advantage of these resources only breeds a sense of apathy about pursuing one’s interests and working together to solve problems; it not only harms the very foundation this school is built on but also fails to help students or teachers.</p>
|
||||
<p><strong>The merit lottery system may not increase diversity/representation.</strong></p>
|
||||
<p>The current TJ demographic is extremely disproportionate to the surrounding population, but not due to the admissions process. The number of Black and Latinx students who apply to TJ is also disproportionately low compared to that of Asian and Caucasian applicants. Under the proposed system, county demographics will still not be properly reflected if the number of applicants from these populations stay low. Unfortunately, there is a lack of input around the county from historically underrepresented populations about their views on TJ. Under the current proposal, success would remain hollow even if applicant numbers were to rise because these disadvantaged populations are still not given the resources to thrive at TJ. </p>
|
||||
<p><strong>Teacher recommendations are one of the most equitable ways to understand a student beyond their test scores, and removing them is counterproductive.</strong></p>
|
||||
<p>Students cannot take a prep class to show their passion for STEM to their teachers; the passion will be apparent to the teachers through extensive participation in class and the pursuit of complex subjects beyond the classroom. Letters of recommendation are also an essential way for students to demonstrate their aspirations and personality. Without this representation, students who demonstrate a passion for STEM but score poorly on tests would be overlooked during the application process. It is evident that teacher recommendations have many flaws; however, we do believe that they play a crucial part in any admissions process, and we’d like the Board to move to work with teachers to improve the recommendations.</p>
|
||||
<p><strong>The quota system will not solve the diversity issue at its TJ. </strong></p>
|
||||
<p>The regional quota system creates a synthetic version of diversity that only looks good on paper while creating additional problems. As it stands, TJ is an incredibly challenging environment for many. By enforcing a regional quota, many highly qualified students who deserve to attend TJ would lose the opportunity to attend the school and those unprepared to handle TJ’s heavy coursework would be accepted. Furthermore, many students who come from schools which historically have had few TJ acceptances likely don’t have the extensive exposure to STEM that feeder schools do and may not have heard of TJ much less apply. The combination of these two factors would lead to many struggling students and a hurt reputation in the eyes of minority groups, leading to fewer applications.</p>
|
||||
<p>When academic readiness and diversity throughout the county overlap, diversity within TJ will happen naturally. Instead of enforcing artificial quotas, we should seek to improve educational equity throughout the entire county. Diversity is not a number, it is an environment. </p>
|
||||
<p>The reality is,. Creating a quota to include more students from schools which have historically failed to produce many TJ acceptances does nothing to address this issue, meaning the number of applicants from these schools will continue to stay low compared to that of feeder schools. </p>
|
||||
<p><strong>Regional quotas give some applicants an unfair advantage based on where they live and may have consequences beyond diversity at TJ.</strong></p>
|
||||
<p>The current proposal’s lottery pathways have been organized in such a way that many schools with historically high TJ acceptance rates are grouped together (for example, Carson and Cooper in Region 1 and Longfellow and Kilmer in Region 2) while schools that traditionally do not produce as many TJ acceptances have far less competitive regional pathways. This leads to more qualified applicants being rejected from TJ while those who are less qualified would be accepted, simply because they live in a different region. Furthermore, as parents realize that living in a certain place could mean that their child would be at a disadvantage may cause them to move away from the place. This may have economic implications as well: as individuals move away from a certain area, many local businesses (even outside of those directly affected such as prep classes) within that area would subsequently suffer from the decrease in patronage.</p>
|
||||
<h1><strong>Our proposals</strong></h1>
|
||||
<p><em>The most effective solution to a lack of diversity at TJ would be to level the playing field for disadvantaged students far earlier. Yes, this proposal requires significant investment in schools that serve disadvantaged students. Yes, it is expensive. Yes, it will take more time than eliminating the admissions standards for TJ. Altering the TJ admissions process to a lottery is a band-aid solution that fixes the problem on paper, but the inherent problem of educational inequity is still maintained throughout the county, and it’s hard to treat a bullet wound with a band-aid. We believe that our proposals will help to mitigate the overarching problem in the long term, increasing TJ’s diversity while maintaining the educational excellence that makes TJ special.</em></p>
|
||||
<p><strong>Increase targeted recruitment for TJ applicants at all regional middle schools</strong></p>
|
||||
<p>While we applaud the board for discussing the need for this change, we would like to iterate more specific solutions. Many middle schools, particularly those in low-income areas, barely mention TJHSST applications, and schools that neglect to talk about TJ are doing a disservice to students who truly have a passion for STEM and would benefit from a rigorous high-level education like TJ. To significantly increase awareness of the possibility of applying to TJ, the Fairfax County School Board should consider making admission outreach mandatory for all middle schools in the county. Our proposal for implementing this is to have TJ student ambassadors be part of the outreach process, and help encourage middle schoolers, especially those that do not send many students to TJ, to apply. Further, information about admissions deadlines and content should be given directly to the student through their FCPS email.</p>
|
||||
<p><strong>Remove the groupings based on “capability” between AAP and Gen-Ed in the early grades</strong></p>
|
||||
<p>Separation based on intellect starts very early on in the public school process, as early as 1st and 2nd grades when students are divided into the Advanced Academics Program (AAP) and General Education (Gen-Ed). Teachers often state without any constraint that AAP students are expected to be “more capable” and learn at a “faster pace”. Additionally, despite the IOWA being required to be administered for everyone in the AAP program in 6th grade, it is not required for the Gen-Ed students. Some students are not even aware that the IOWA can be administered to students not enrolled in AAP. This single distinction prevents many students from applying to TJ and succeeding on the admissions test as passing the IOWA is required to take Algebra I in seventh grade, which is a prerequisite for getting into TJ. Those who take Algebra I in eighth grade are eligible to apply; however, the math portion of the test requires some Algebra I knowledge, which they have not fully learned by the time of the test. Overall, non-AAP students are at a much greater disadvantage because of a distinction made early on, and the program leaves students limited in which classes they can take, preventing them from being best prepared to apply to and thrive at TJ.</p>
|
||||
<p>Additionally, empirical studies done of FCPS indicate that the Gen-Ed students are often of ethnic minorities: 19% of the students in FCPS are eligible for level 4, but only 12% of black students and 7%[3] of Latinx students are included in this group<strong>. </strong>Unlike the current proposal for changing TJ admissions, this attacks the underlying problems and is built on providing equal opportunity rather than having random admission. Doing this will make the TJ admissions process more inclusive in the long term and will also help increase educational equity in FCPS as a whole.</p>
|
||||
<p><strong>Collect meaningful data from the minorities around the county about their views on TJ.</strong></p>
|
||||
<p>The current proposal is, at best, a rushed decision without consideration of a significant amount of data. The highlight of the proposal seems to be that everything else has failed, but the universal problem is the lack of communication with those to whom it pertains. There have been some weak attempts to help create opportunities to help boost minority acceptance rates, but they were so poorly advertised that most FCPS students have never heard of them. Students in schools with fewer resources have never been asked how they view TJ or even if they have heard of TJ. We make our best decisions when they are driven by data. This lack of data regarding the merit lottery system is significant since the lack of admissions for students of color could very likely be due to a lack of applicants. This means that the current system is most likely to inflate the white student populations while deflating the Asian populations, becoming almost the exact opposite of the goal. Simultaneously, it would guarantee that heavy feeder schools like Rachel Carson Middle School, where TJ is made commonly known to the students, would maintain its dominant feeder status.</p>
|
||||
<p><strong>Provide students with more opportunities and resources that they can use to help with schoolwork</strong></p>
|
||||
<p>Many students in higher-income neighborhoods have parents who attended higher-level education and can assist students with their coursework by teaching them or paying for classes. Not everyone’s parents can teach or afford STEM classes, so this puts some students at a disadvantage as there are fewer opportunities for one-on-one help. In middle schools particularly, there should be more opportunities for students to get tutoring with their teachers outside of school hours. We recognize that many teachers do not have the time to hold these tutoring sessions out of school hours, so an alternative for those teachers would be to have older students, whether they be high schoolers or middle schoolers, tutor younger students who feel they need the help. Additionally, teachers (especially those who teach STEM classes) should increase awareness of free websites and resources that could help the students understand the content and delve deeper into the subject. If sufficient resources to enrich students’ learning were made available to all who wanted to access them, then a fair admissions test would be much more effective at testing students’ empirical knowledge.</p>
|
||||
<p><strong>Encourage and fund STEM and TJ Prep programs in middle and elementary schools with higher populations of disadvantaged students.</strong></p>
|
||||
<p>Just like with varsity sports, the slots should go to the most qualified students. For TJ, that currently heavily favors those who have the resources to prepare for the test and while you can certainly make the test less preparable, no one will be able to eliminate the advantage that these students have. To address this issue, FCPS could run free TJ “readiness” classes and other STEM classes at schools (much like paid test preparation classes) through organizations such as ACE and Global Plus. By funding more free programs in FCPS schools for students without these resources, you can give resources to disadvantaged students to help them be able to properly prepare for the tests and ensure that all the students that walk in on test day do so on an equal playing field and offers are given to students who truly have the greatest potential to succeed at TJ. </p>
|
||||
<p><strong>Encourage the creation of equitable extracurricular STEM activities across all schools in FCPS.</strong></p>
|
||||
<p>Educational seminars should be held by current TJ student volunteers at underserved elementary and middle schools. In addition, FCPS should add enrichment clubs to underserved schools, such as rocketry, chess, and math clubs. FCPS has consistently said that these clubs are “run by parents, not the schools.” While it is true that these clubs have historically been run by parent groups, that is precisely the source of the problems and disparities. At privileged schools, there are many engaged parents who have the free time to volunteer. At schools where there might be more single parents and/or more parents working multiple jobs, adults have less time to spare. Therefore, it stands to reason that schools with less parent involvement will be underserved and disadvantaged. FCPS needs to take ownership of this issue and run some bare minimum level of clubs at each school when there is insufficient parental volunteerism to support these programs. Whether these clubs are run by paid instructors, teacher volunteers, student volunteers from other schools, community organizations, ACE, Global Plus, IFTE, or other qualified individuals and organizations, a solution needs to be found to provide equal access to participate in STEM extracurriculars for all students.</p>
|
||||
<p><strong>Create public makerspaces for STEM work.</strong></p>
|
||||
<p>One of the reasons people have pointed out for feeling unwelcome or disadvantaged in STEM learning is that they had fewer opportunities to pursue STEM activities before middle and high schools. If Fairfax County can host public maker spaces for STEM, it will introduce people to STEM activities at a younger age and allow them to discover their passions. This will allow them to develop STEM skills at their own pace and realize if they want to pursue TJ from early on.</p>
|
||||
<p><em>While an admissions test is necessary, the current admissions test is flawed. Wealthier TJ applicants often attend private tutoring classes to prepare for the TJ admissions test. Creating a test that measures critical thinking, logic, and creative problem solving instead of standardized testing skills would help to eliminate the advantage that students who pay for private tutoring have. This was implemented for the Class of 2022 admissions with the introduction of the Quant-Q, and we saw noticeable differences in class demographics. We should continue in this direction.</em></p>
|
||||
<p><strong>Create a portion of the admissions test where students must learn a new concept and apply their knowledge to solve given problems.</strong></p>
|
||||
<p>One way we could make the admissions test less preparable would be as follows:</p>
|
||||
<ol>
|
||||
<li>Students are given a concept to learn (20 - 30 minutes). This concept must be one not typically taught in schools.</li>
|
||||
<li>Students are given a problem, and students create a solution based on the new concepts.</li>
|
||||
</ol>
|
||||
<p>This idea can be applied to a wide range of topics, especially those in STEM fields. For example, students could learn about encryption techniques, practice decryption, and then use that knowledge to decrypt codes. Students could also learn about architecture techniques and then build a structure using given materials that accomplishes a given goal and satisfies certain constraints.</p>
|
||||
<p>Many prestigious math competitions (ex. ARML, PuMAC, CMIMC) use a version of this testing structure in a round known as power rounds, where competitors must solve--and usually show their work for-- problems regarding a scenario, often without being able to use conventional mathematical formulas and instead of having to largely rely on their problem-solving skills. Additionally, the well-known national competition Science Olympiad holds events of this nature, such as the Experimental Design event, where students are given materials and a previously unknown question/topic to address and must then design, conduct, and analyze the results of an experiment. Finally, the Future Problem Solving Program International organizes a competition called Global Issues Problem Solving where students are informed of the question topic prior to but are not given the actual question until the day of the test, where they then apply their knowledge of the topic and creative problem-solving skills to present possible solutions to the given future problem scenario. TJ admissions testers can use these competitions, as well as many others, as models for crafting a less preparable admissions test.</p>
|
||||
<p><strong>Provide school profiles in each application to provide a more thorough understanding of the opportunities available to each applicant.</strong></p>
|
||||
<p>The opportunities available at middle schools across Fairfax County and surrounding counties differ considerably. Many schools do not have the same opportunities for STEM clubs, and it will take time to implement new STEM clubs at middle schools throughout the county. Some middle schools, such as Longfellow - a prominent feeder school - have well-established Science Olympiad programs and computer classes while others do not. This severely limits the opportunity each student has to demonstrate their interest in STEM. To ensure that as much context as possible is given for each applicant, we propose sending a “school profile” in each application. These school profiles would detail the extracurricular opportunities given at each school. For example, if a student lacked Science Olympiad experience at a school that did not have a Science Olympiad, that should not be held against them. This would be used solely for context - we cannot ensure that if the program did exist, the student would participate in it.</p>
|
||||
<h1><strong>Final Thoughts</strong></h1>
|
||||
<p>We acknowledge that there is not an all-encompassing solution to foster a diverse learning environment at TJ. Superficial solutions may produce favorable results in the short-term, but they fail to properly address the root issue. The process will be long and tough, but with action from every corner of the community, it can be achieved.</p>
|
||||
<p>We believe that instead of hastily trying to “fit” in more diversity at TJ, we should be starting from a fundamental level to make education an experience that allows everyone an equal opportunity; only then will diversity within the TJ community flourish naturally.</p>{{form.message}}<br />
|
||||
<p><strong>We hope the board will reconsider accepting the proposed changes to the TJ Admissions process and seek solutions that will address the root of the diversity issue at our school. <br />Thank you.</strong></p><br /> Sincerely, <br>{{form.name}}</div>
|
||||
|
||||
<p>Please direct any replies to this member of the community ({{form.name}}) to their email at {{form.email}}</p>
|
142
pages/templates/pages/index.html
Normal file
142
pages/templates/pages/index.html
Normal file
|
@ -0,0 +1,142 @@
|
|||
{% extends 'pages/base.html' %}
|
||||
{% block content %}
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-12">
|
||||
<div class="text-center text-fluid">
|
||||
<h1 class="mt-5">Send your own letter to FCPS!</h1>
|
||||
<p class="lead">Hi! We're a group of current students at TJHSST writing a letter to the school board regarding their most recent proposal on TJ's admissions system, and we'd love if you could send your own!</p>
|
||||
<h3 class="mb-4"><a href="https://bit.ly/TJLetterToFCPS">Find the letter here!</a></h3>
|
||||
</div>
|
||||
<form name="form" method="post">
|
||||
{% csrf_token %}
|
||||
<fieldset class="form-group">
|
||||
<legend class="border-bottom pb-2 mb-4"> Who would you like to send it to? <button type="button" class="btn btn-info" onclick="selectAll()">Select All</button><button type="button" id="dropdownButton" class="float-right" onclick="toggle()"><i class="fa fa-chevron-down" aria-hidden="true"></i></button></legend>
|
||||
<div id="who" class="hide">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep1" value="kakeysgamarr@fcps.edu">
|
||||
<label for="rep1"><img src="https://www.fcps.edu/sites/default/files/styles/staff_full/public/media/profile/091727-2032-Karen%20Keys-Gamarra-Final-web.jpg?itok=NrP6aIlP" width=145 height=180></img><br>Karen Keys-Gamarra<br><i>Member-at-Large</i></label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep2" value="aomeish@fcps.edu">
|
||||
<label for="rep2"><img src="https://www.fcps.edu/sites/default/files/styles/staff_thumbnail/public/media/profile/121920-2037%20Abrar%20Omeish%20web.jpg?itok=E3PACZjL" width=145 height=180></img><br>Abrar Omeish<br><i>Member-at-Large</i></label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep3" value="rsizemorehei@fcps.edu">
|
||||
<label for="rep3"><img src="https://www.fcps.edu/sites/default/files/styles/staff_thumbnail/public/media/profile/121917-2017_Rachna%20Sizemore%20Heizer%20web.jpg?itok=RIadk_lw" width=145 height=180></img><br>Rachna Sizemore Heizer<br><i>Member-at-Large</i></label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep4" value="Megan.McLaughlin@fcps.edu">
|
||||
<label for="rep4"><img src="https://www.fcps.edu/sites/default/files/styles/staff_thumbnail/public/media/profile/121510-2139-Final%208x10-mmclaughlin.jpg?itok=0UnuCGvf" width=145 height=180></img><br>Megan McLaughlin<br><i>Braddock District Representative</i></label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep5" value="evtholen@fcps.edu">
|
||||
<label for="rep5"><img src="https://www.fcps.edu/sites/default/files/styles/staff_thumbnail/public/media/profile/111947-2057%20Elaine%20Tholen%20web.jpg?itok=8wuH0L1T" width=145 height=180></img><br>Elaine Tholen<br><i>Dranesville District Representative</i></label>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="repHunt" value="mkmeren@fcps.edu">
|
||||
<label for="repHunt"><img src="https://www.fcps.edu/sites/default/files/styles/staff_thumbnail/public/media/profile/121903-2040_Melanie%20Maren%20web_0.jpg?itok=WzZ-ovgZ" width=145 height=180></img><br>Melanie K. Meren<br><i>Hunter Mill District Representative</i></label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep6" value="tdkaufax@fcps.edu">
|
||||
<label for="rep6"><img src="https://www.fcps.edu/sites/default/files/styles/staff_thumbnail/public/media/profile/121510-2107-Final_8x10-NEWtkaufax.jpg?itok=GwPLgw7n" width=145 height=180></img><br>Tamara Derenak Kaufax<br><i>Lee District Representative</i></label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep7" value="rjanderson@fcps.edu">
|
||||
<label for="rep7"><img src="https://www.fcps.edu/sites/default/files/styles/staff_thumbnail/public/media/profile/121927-2054_Richardy%20Anderson%20web.jpg?itok=oBtNq7T1" width=145 height=180></img><br>Ricardy Anderson<br><i>Mason District Representative</i></label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep9" value="klcorbettsan@fcps.edu">
|
||||
<label for="rep9"><img src="https://www.fcps.edu/sites/default/files/styles/staff_thumbnail/public/media/profile/121929-2026%20Karen%20Corbett%20Sanders%20web.jpg?itok=QmZ5C31j" width=145 height=180></img><br>Karen Corbett Sanders<br><i>Mount Vernon District Representative</i></label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep10" value="kvfrisch@fcps.edu">
|
||||
<label for="rep10"><img src="https://www.fcps.edu/sites/default/files/styles/staff_thumbnail/public/media/profile/121918-2039-1083%20Karl%20Frisch%20NEW%20web.jpg?itok=Jk0qD8Zz" width=145 height=180></img><br>Karl Frisch<br><i>Providence District Representative</i></label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep11" value="lhcohen@fcps.edu">
|
||||
<label for="rep11"><img src="https://www.fcps.edu/sites/default/files/styles/staff_thumbnail/public/media/profile/121931-2020%20Laura%20Jane%20Cohen%20web.jpg?itok=X7mixd9I" width=145 height=180></img><br>Laura Jane Cohen<br><i>Springfield District Representative</i></label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep12" value="sgpekarsky@fcps.edu">
|
||||
<label for="rep12"><img src="https://www.fcps.edu/sites/default/files/styles/staff_thumbnail/public/media/profile/121932-2016%20Stella%20Pekarsky%20web.jpg?itok=RNsq3UZH" width=145 height=180></img><br>Stella Pekarsky<br><i>Vice-Chair Sully District Representative</i></label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep13" value="atif.qarni@governor.virginia.gov">
|
||||
<label for="rep13"><img src="https://www.education.virginia.gov/media/governorvirginiagov/secretary-of-education/images/atif_qarni_500.jpg" width=145 height=180></img><br>Atif Qarni<br><i>Secretary of Education</i></label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep14" value="ssbrabrand@fcps.edu">
|
||||
<label for="rep14"><img src="https://www.fcps.edu/sites/default/files/styles/staff_full/public/media/profile/brabrandportrait.jpg?itok=Xtf99-BR" width=145 height=180></img><br>Scott Brabrand<br><i>FCPS Superintendent</i></label>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col">
|
||||
<div class="form-check form-check-inline">
|
||||
<input checked class="form-check-input" type="checkbox" name="rep" id="rep15" value="ralph.northam@governor.virginia.gov">
|
||||
<label for="rep15"><img src="https://bloximages.newyork1.vip.townnews.com/richmond.com/content/tncms/assets/v3/editorial/2/e2/2e225c78-d38f-5735-bbe1-0e0275cd135d/5c54d8d3008f3.image.jpg" width=145 height=180></img><br>Ralph Northam<br><i>VA Governor</i></label>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</fieldset>
|
||||
<fieldset class="form-group">
|
||||
<legend class="border-bottom mb-4"> Just some quick info <small class="text-muted">(this info will not be saved)</small></legend>
|
||||
<div class="form-group">
|
||||
<label for="name">Your Name:</label>
|
||||
<input name="name" type="text" class="form-control" id="name">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="email">Email address:</label>
|
||||
<input name="email" type="email" class="form-control" id="email">
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="message">Your own message to the board:</label>
|
||||
<textarea name="message" type="textarea" class="form-control" id="message" rows="4"></textarea>
|
||||
</div>
|
||||
</fieldset>
|
||||
<div class="form-group" id="div1">
|
||||
<button type="submit" class="btn btn-outline-info">Submit</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
3
pages/tests.py
Normal file
3
pages/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
22
pages/urls.py
Normal file
22
pages/urls.py
Normal file
|
@ -0,0 +1,22 @@
|
|||
"""config URL Configuration
|
||||
|
||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
||||
https://docs.djangoproject.com/en/3.1/topics/http/urls/
|
||||
Examples:
|
||||
Function views
|
||||
1. Add an import: from my_app import views
|
||||
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
||||
Class-based views
|
||||
1. Add an import: from other_app.views import Home
|
||||
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
||||
Including another URLconf
|
||||
1. Import the include() function: from django.urls import include, path
|
||||
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
||||
"""
|
||||
from django.contrib import admin
|
||||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path('', views.main),
|
||||
]
|
39
pages/views.py
Normal file
39
pages/views.py
Normal file
|
@ -0,0 +1,39 @@
|
|||
from django.shortcuts import render
|
||||
from random import choice
|
||||
from django.template.loader import render_to_string
|
||||
from django.utils.html import strip_tags
|
||||
from config.settings import EMAIL_HOST_USER
|
||||
from django.core.mail import EmailMultiAlternatives, send_mail
|
||||
|
||||
# Create your views here.
|
||||
|
||||
def main(request):
|
||||
if request.POST:
|
||||
subjects = [
|
||||
'A letter listing my concerns',
|
||||
'Concerns with the recent admissions proposal',
|
||||
"Some feedback on the Board's admissions proposal",
|
||||
]
|
||||
subject = choice(subjects)
|
||||
context = {
|
||||
'form':request.POST,
|
||||
'mailto': f'mailto:{",".join(request.POST.getlist("rep"))}?subject={subject}'
|
||||
}
|
||||
html_message = render_to_string('pages/email_template.html', context=context)
|
||||
plain_message = strip_tags(html_message)
|
||||
#recepient = request.POST.getlist('rep')
|
||||
recepient = ['rushilwiz@gmail.com', 'lettertofcps@gmail.com']
|
||||
sender = [request.POST.get('email')]
|
||||
email = EmailMultiAlternatives(
|
||||
subject,
|
||||
plain_message,
|
||||
EMAIL_HOST_USER,
|
||||
recepient,
|
||||
cc=sender,
|
||||
reply_to=sender
|
||||
)
|
||||
email.attach_alternative(html_message, "text/html")
|
||||
print("### EMAIL SENT ###")
|
||||
email.send(fail_silently=False)
|
||||
return render (request, "pages/email.html", context=context)
|
||||
return render(request, "pages/index.html")
|
83
requirements.txt
Normal file
83
requirements.txt
Normal file
|
@ -0,0 +1,83 @@
|
|||
acme==1.1.0
|
||||
appdirs==1.4.4
|
||||
attrs==19.3.0
|
||||
automat==0.8.0
|
||||
blinker==1.4
|
||||
certbot==0.40.0
|
||||
certifi==2019.11.28
|
||||
chardet==3.0.4
|
||||
click==7.0
|
||||
cloud-init==20.2
|
||||
colorama==0.4.3
|
||||
command-not-found==0.3
|
||||
configargparse==0.13.0
|
||||
configobj==5.0.6
|
||||
constantly==15.1.0
|
||||
ctop==1.0.0
|
||||
dbus-python==1.2.16
|
||||
distlib==0.3.1
|
||||
distro==1.4.0
|
||||
distro-info==0.23ubuntu1
|
||||
django-ckeditor==5.9.0
|
||||
django-crispy-forms==1.9.2
|
||||
django-jenkins==0.110.0
|
||||
domain-connect-dyndns==0.0.8
|
||||
entrypoints==0.3
|
||||
feedparser==5.2.1
|
||||
filelock==3.0.12
|
||||
gunicorn==20.0.4
|
||||
hyperlink==19.0.0
|
||||
idna==2.8
|
||||
importlib-metadata==1.5.0
|
||||
incremental==16.10.1
|
||||
jinja2==2.10.1
|
||||
josepy==1.2.0
|
||||
jsonpatch==1.22
|
||||
jsonpointer==2.0
|
||||
jsonschema==3.2.0
|
||||
language-selector==0.1
|
||||
launchpadlib==1.10.13
|
||||
markupsafe==1.1.0
|
||||
mock==3.0.5
|
||||
more-itertools==4.2.0
|
||||
netifaces==0.10.4
|
||||
parsedatetime==2.4
|
||||
pbr==5.4.5
|
||||
pep8==1.7.1
|
||||
pillow==7.2.0
|
||||
pip-chill==1.0.0
|
||||
psycopg2==2.8.5
|
||||
pyasn1==0.4.2
|
||||
pyasn1-modules==0.2.1
|
||||
pyflakes==2.2.0
|
||||
pygobject==3.36.0
|
||||
pyhamcrest==1.9.0
|
||||
pyicu==2.4.2
|
||||
pymacaroons==0.13.0
|
||||
pynacl==1.3.0
|
||||
pyopenssl==19.0.0
|
||||
pyrfc3339==1.1
|
||||
pyrsistent==0.15.5
|
||||
pyserial==3.4
|
||||
python-apt==2.0.0+ubuntu0.20.4.1
|
||||
python-debian==0.1.36ubuntu1
|
||||
pyyaml==5.3.1
|
||||
requests-toolbelt==0.8.0
|
||||
requests-unixsocket==0.2.0
|
||||
service-identity==18.1.0
|
||||
setproctitle==1.1.10
|
||||
simplejson==3.16.0
|
||||
social-auth-app-django==4.0.0
|
||||
ssh-import-id==5.10
|
||||
systemd-python==234
|
||||
twisted==18.9.0
|
||||
ubuntu-advantage-tools==20.3
|
||||
ufw==0.36
|
||||
unattended-upgrades==0.1
|
||||
urllib3==1.25.8
|
||||
virtualenv==20.0.17
|
||||
zipp==1.0.0
|
||||
zope.component==4.3.0
|
||||
zope.event==4.4
|
||||
zope.hookable==5.0.0
|
||||
zope.interface==4.7.1
|
120
settings.py
Normal file
120
settings.py
Normal file
|
@ -0,0 +1,120 @@
|
|||
"""
|
||||
Django settings for config project.
|
||||
|
||||
Generated by 'django-admin startproject' using Django 3.1.1.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/3.1/topics/settings/
|
||||
|
||||
For the full list of settings and their values, see
|
||||
https://docs.djangoproject.com/en/3.1/ref/settings/
|
||||
"""
|
||||
|
||||
from pathlib import Path
|
||||
|
||||
# Build paths inside the project like this: BASE_DIR / 'subdir'.
|
||||
BASE_DIR = Path(__file__).resolve().parent.parent
|
||||
|
||||
|
||||
# Quick-start development settings - unsuitable for production
|
||||
# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/
|
||||
|
||||
# SECURITY WARNING: keep the secret key used in production secret!
|
||||
SECRET_KEY = 'm8ojr0c3v9_ti70=v0-f#2^mjqmsusmy@%h49wolvp^ihorhyj'
|
||||
|
||||
# SECURITY WARNING: don't run with debug turned on in production!
|
||||
DEBUG = True
|
||||
|
||||
ALLOWED_HOSTS = []
|
||||
|
||||
|
||||
# Application definition
|
||||
|
||||
INSTALLED_APPS = [
|
||||
'django.contrib.admin',
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
'django.contrib.sessions',
|
||||
'django.contrib.messages',
|
||||
'django.contrib.staticfiles',
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
'django.middleware.security.SecurityMiddleware',
|
||||
'django.contrib.sessions.middleware.SessionMiddleware',
|
||||
'django.middleware.common.CommonMiddleware',
|
||||
'django.middleware.csrf.CsrfViewMiddleware',
|
||||
'django.contrib.auth.middleware.AuthenticationMiddleware',
|
||||
'django.contrib.messages.middleware.MessageMiddleware',
|
||||
'django.middleware.clickjacking.XFrameOptionsMiddleware',
|
||||
]
|
||||
|
||||
ROOT_URLCONF = 'config.urls'
|
||||
|
||||
TEMPLATES = [
|
||||
{
|
||||
'BACKEND': 'django.template.backends.django.DjangoTemplates',
|
||||
'DIRS': [],
|
||||
'APP_DIRS': True,
|
||||
'OPTIONS': {
|
||||
'context_processors': [
|
||||
'django.template.context_processors.debug',
|
||||
'django.template.context_processors.request',
|
||||
'django.contrib.auth.context_processors.auth',
|
||||
'django.contrib.messages.context_processors.messages',
|
||||
],
|
||||
},
|
||||
},
|
||||
]
|
||||
|
||||
WSGI_APPLICATION = 'config.wsgi.application'
|
||||
|
||||
|
||||
# Database
|
||||
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases
|
||||
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': BASE_DIR / 'db.sqlite3',
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
# Password validation
|
||||
# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators
|
||||
|
||||
AUTH_PASSWORD_VALIDATORS = [
|
||||
{
|
||||
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
|
||||
},
|
||||
{
|
||||
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
|
||||
},
|
||||
{
|
||||
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
|
||||
},
|
||||
{
|
||||
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
|
||||
},
|
||||
]
|
||||
|
||||
|
||||
# Internationalization
|
||||
# https://docs.djangoproject.com/en/3.1/topics/i18n/
|
||||
|
||||
LANGUAGE_CODE = 'en-us'
|
||||
|
||||
TIME_ZONE = 'UTC'
|
||||
|
||||
USE_I18N = True
|
||||
|
||||
USE_L10N = True
|
||||
|
||||
USE_TZ = True
|
||||
|
||||
|
||||
# Static files (CSS, JavaScript, Images)
|
||||
# https://docs.djangoproject.com/en/3.1/howto/static-files/
|
||||
|
||||
STATIC_URL = '/static/'
|
16
static/css/styles.css
Normal file
16
static/css/styles.css
Normal file
|
@ -0,0 +1,16 @@
|
|||
footer {
|
||||
margin-top: 20vh;
|
||||
}
|
||||
|
||||
#letter {
|
||||
overflow-y: scroll;
|
||||
height:35vh;
|
||||
}
|
||||
|
||||
.hide {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#dropdownButton {
|
||||
background-color: !important white;
|
||||
}
|
973
static/js/clipboard.js
Normal file
973
static/js/clipboard.js
Normal file
|
@ -0,0 +1,973 @@
|
|||
/*!
|
||||
* clipboard.js v2.0.6
|
||||
* https://clipboardjs.com/
|
||||
*
|
||||
* Licensed MIT © Zeno Rocha
|
||||
*/
|
||||
(function webpackUniversalModuleDefinition(root, factory) {
|
||||
if(typeof exports === 'object' && typeof module === 'object')
|
||||
module.exports = factory();
|
||||
else if(typeof define === 'function' && define.amd)
|
||||
define([], factory);
|
||||
else if(typeof exports === 'object')
|
||||
exports["ClipboardJS"] = factory();
|
||||
else
|
||||
root["ClipboardJS"] = factory();
|
||||
})(this, function() {
|
||||
return /******/ (function(modules) { // webpackBootstrap
|
||||
/******/ // The module cache
|
||||
/******/ var installedModules = {};
|
||||
/******/
|
||||
/******/ // The require function
|
||||
/******/ function __webpack_require__(moduleId) {
|
||||
/******/
|
||||
/******/ // Check if module is in cache
|
||||
/******/ if(installedModules[moduleId]) {
|
||||
/******/ return installedModules[moduleId].exports;
|
||||
/******/ }
|
||||
/******/ // Create a new module (and put it into the cache)
|
||||
/******/ var module = installedModules[moduleId] = {
|
||||
/******/ i: moduleId,
|
||||
/******/ l: false,
|
||||
/******/ exports: {}
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Execute the module function
|
||||
/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
|
||||
/******/
|
||||
/******/ // Flag the module as loaded
|
||||
/******/ module.l = true;
|
||||
/******/
|
||||
/******/ // Return the exports of the module
|
||||
/******/ return module.exports;
|
||||
/******/ }
|
||||
/******/
|
||||
/******/
|
||||
/******/ // expose the modules object (__webpack_modules__)
|
||||
/******/ __webpack_require__.m = modules;
|
||||
/******/
|
||||
/******/ // expose the module cache
|
||||
/******/ __webpack_require__.c = installedModules;
|
||||
/******/
|
||||
/******/ // define getter function for harmony exports
|
||||
/******/ __webpack_require__.d = function(exports, name, getter) {
|
||||
/******/ if(!__webpack_require__.o(exports, name)) {
|
||||
/******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
|
||||
/******/ }
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // define __esModule on exports
|
||||
/******/ __webpack_require__.r = function(exports) {
|
||||
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
||||
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
||||
/******/ }
|
||||
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // create a fake namespace object
|
||||
/******/ // mode & 1: value is a module id, require it
|
||||
/******/ // mode & 2: merge all properties of value into the ns
|
||||
/******/ // mode & 4: return value when already ns object
|
||||
/******/ // mode & 8|1: behave like require
|
||||
/******/ __webpack_require__.t = function(value, mode) {
|
||||
/******/ if(mode & 1) value = __webpack_require__(value);
|
||||
/******/ if(mode & 8) return value;
|
||||
/******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
|
||||
/******/ var ns = Object.create(null);
|
||||
/******/ __webpack_require__.r(ns);
|
||||
/******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
|
||||
/******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
|
||||
/******/ return ns;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
||||
/******/ __webpack_require__.n = function(module) {
|
||||
/******/ var getter = module && module.__esModule ?
|
||||
/******/ function getDefault() { return module['default']; } :
|
||||
/******/ function getModuleExports() { return module; };
|
||||
/******/ __webpack_require__.d(getter, 'a', getter);
|
||||
/******/ return getter;
|
||||
/******/ };
|
||||
/******/
|
||||
/******/ // Object.prototype.hasOwnProperty.call
|
||||
/******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
|
||||
/******/
|
||||
/******/ // __webpack_public_path__
|
||||
/******/ __webpack_require__.p = "";
|
||||
/******/
|
||||
/******/
|
||||
/******/ // Load entry module and return exports
|
||||
/******/ return __webpack_require__(__webpack_require__.s = 6);
|
||||
/******/ })
|
||||
/************************************************************************/
|
||||
/******/ ([
|
||||
/* 0 */
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
function select(element) {
|
||||
var selectedText;
|
||||
|
||||
if (element.nodeName === 'SELECT') {
|
||||
element.focus();
|
||||
|
||||
selectedText = element.value;
|
||||
}
|
||||
else if (element.nodeName === 'INPUT' || element.nodeName === 'TEXTAREA') {
|
||||
var isReadOnly = element.hasAttribute('readonly');
|
||||
|
||||
if (!isReadOnly) {
|
||||
element.setAttribute('readonly', '');
|
||||
}
|
||||
|
||||
element.select();
|
||||
element.setSelectionRange(0, element.value.length);
|
||||
|
||||
if (!isReadOnly) {
|
||||
element.removeAttribute('readonly');
|
||||
}
|
||||
|
||||
selectedText = element.value;
|
||||
}
|
||||
else {
|
||||
if (element.hasAttribute('contenteditable')) {
|
||||
element.focus();
|
||||
}
|
||||
|
||||
var selection = window.getSelection();
|
||||
var range = document.createRange();
|
||||
|
||||
range.selectNodeContents(element);
|
||||
selection.removeAllRanges();
|
||||
selection.addRange(range);
|
||||
|
||||
selectedText = selection.toString();
|
||||
}
|
||||
|
||||
return selectedText;
|
||||
}
|
||||
|
||||
module.exports = select;
|
||||
|
||||
|
||||
/***/ }),
|
||||
/* 1 */
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
function E () {
|
||||
// Keep this empty so it's easier to inherit from
|
||||
// (via https://github.com/lipsmack from https://github.com/scottcorgan/tiny-emitter/issues/3)
|
||||
}
|
||||
|
||||
E.prototype = {
|
||||
on: function (name, callback, ctx) {
|
||||
var e = this.e || (this.e = {});
|
||||
|
||||
(e[name] || (e[name] = [])).push({
|
||||
fn: callback,
|
||||
ctx: ctx
|
||||
});
|
||||
|
||||
return this;
|
||||
},
|
||||
|
||||
once: function (name, callback, ctx) {
|
||||
var self = this;
|
||||
function listener () {
|
||||
self.off(name, listener);
|
||||
callback.apply(ctx, arguments);
|
||||
};
|
||||
|
||||
listener._ = callback
|
||||
return this.on(name, listener, ctx);
|
||||
},
|
||||
|
||||
emit: function (name) {
|
||||
var data = [].slice.call(arguments, 1);
|
||||
var evtArr = ((this.e || (this.e = {}))[name] || []).slice();
|
||||
var i = 0;
|
||||
var len = evtArr.length;
|
||||
|
||||
for (i; i < len; i++) {
|
||||
evtArr[i].fn.apply(evtArr[i].ctx, data);
|
||||
}
|
||||
|
||||
return this;
|
||||
},
|
||||
|
||||
off: function (name, callback) {
|
||||
var e = this.e || (this.e = {});
|
||||
var evts = e[name];
|
||||
var liveEvents = [];
|
||||
|
||||
if (evts && callback) {
|
||||
for (var i = 0, len = evts.length; i < len; i++) {
|
||||
if (evts[i].fn !== callback && evts[i].fn._ !== callback)
|
||||
liveEvents.push(evts[i]);
|
||||
}
|
||||
}
|
||||
|
||||
// Remove event from queue to prevent memory leak
|
||||
// Suggested by https://github.com/lazd
|
||||
// Ref: https://github.com/scottcorgan/tiny-emitter/commit/c6ebfaa9bc973b33d110a84a307742b7cf94c953#commitcomment-5024910
|
||||
|
||||
(liveEvents.length)
|
||||
? e[name] = liveEvents
|
||||
: delete e[name];
|
||||
|
||||
return this;
|
||||
}
|
||||
};
|
||||
|
||||
module.exports = E;
|
||||
module.exports.TinyEmitter = E;
|
||||
|
||||
|
||||
/***/ }),
|
||||
/* 2 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var is = __webpack_require__(3);
|
||||
var delegate = __webpack_require__(4);
|
||||
|
||||
/**
|
||||
* Validates all params and calls the right
|
||||
* listener function based on its target type.
|
||||
*
|
||||
* @param {String|HTMLElement|HTMLCollection|NodeList} target
|
||||
* @param {String} type
|
||||
* @param {Function} callback
|
||||
* @return {Object}
|
||||
*/
|
||||
function listen(target, type, callback) {
|
||||
if (!target && !type && !callback) {
|
||||
throw new Error('Missing required arguments');
|
||||
}
|
||||
|
||||
if (!is.string(type)) {
|
||||
throw new TypeError('Second argument must be a String');
|
||||
}
|
||||
|
||||
if (!is.fn(callback)) {
|
||||
throw new TypeError('Third argument must be a Function');
|
||||
}
|
||||
|
||||
if (is.node(target)) {
|
||||
return listenNode(target, type, callback);
|
||||
}
|
||||
else if (is.nodeList(target)) {
|
||||
return listenNodeList(target, type, callback);
|
||||
}
|
||||
else if (is.string(target)) {
|
||||
return listenSelector(target, type, callback);
|
||||
}
|
||||
else {
|
||||
throw new TypeError('First argument must be a String, HTMLElement, HTMLCollection, or NodeList');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds an event listener to a HTML element
|
||||
* and returns a remove listener function.
|
||||
*
|
||||
* @param {HTMLElement} node
|
||||
* @param {String} type
|
||||
* @param {Function} callback
|
||||
* @return {Object}
|
||||
*/
|
||||
function listenNode(node, type, callback) {
|
||||
node.addEventListener(type, callback);
|
||||
|
||||
return {
|
||||
destroy: function() {
|
||||
node.removeEventListener(type, callback);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Add an event listener to a list of HTML elements
|
||||
* and returns a remove listener function.
|
||||
*
|
||||
* @param {NodeList|HTMLCollection} nodeList
|
||||
* @param {String} type
|
||||
* @param {Function} callback
|
||||
* @return {Object}
|
||||
*/
|
||||
function listenNodeList(nodeList, type, callback) {
|
||||
Array.prototype.forEach.call(nodeList, function(node) {
|
||||
node.addEventListener(type, callback);
|
||||
});
|
||||
|
||||
return {
|
||||
destroy: function() {
|
||||
Array.prototype.forEach.call(nodeList, function(node) {
|
||||
node.removeEventListener(type, callback);
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Add an event listener to a selector
|
||||
* and returns a remove listener function.
|
||||
*
|
||||
* @param {String} selector
|
||||
* @param {String} type
|
||||
* @param {Function} callback
|
||||
* @return {Object}
|
||||
*/
|
||||
function listenSelector(selector, type, callback) {
|
||||
return delegate(document.body, selector, type, callback);
|
||||
}
|
||||
|
||||
module.exports = listen;
|
||||
|
||||
|
||||
/***/ }),
|
||||
/* 3 */
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
/**
|
||||
* Check if argument is a HTML element.
|
||||
*
|
||||
* @param {Object} value
|
||||
* @return {Boolean}
|
||||
*/
|
||||
exports.node = function(value) {
|
||||
return value !== undefined
|
||||
&& value instanceof HTMLElement
|
||||
&& value.nodeType === 1;
|
||||
};
|
||||
|
||||
/**
|
||||
* Check if argument is a list of HTML elements.
|
||||
*
|
||||
* @param {Object} value
|
||||
* @return {Boolean}
|
||||
*/
|
||||
exports.nodeList = function(value) {
|
||||
var type = Object.prototype.toString.call(value);
|
||||
|
||||
return value !== undefined
|
||||
&& (type === '[object NodeList]' || type === '[object HTMLCollection]')
|
||||
&& ('length' in value)
|
||||
&& (value.length === 0 || exports.node(value[0]));
|
||||
};
|
||||
|
||||
/**
|
||||
* Check if argument is a string.
|
||||
*
|
||||
* @param {Object} value
|
||||
* @return {Boolean}
|
||||
*/
|
||||
exports.string = function(value) {
|
||||
return typeof value === 'string'
|
||||
|| value instanceof String;
|
||||
};
|
||||
|
||||
/**
|
||||
* Check if argument is a function.
|
||||
*
|
||||
* @param {Object} value
|
||||
* @return {Boolean}
|
||||
*/
|
||||
exports.fn = function(value) {
|
||||
var type = Object.prototype.toString.call(value);
|
||||
|
||||
return type === '[object Function]';
|
||||
};
|
||||
|
||||
|
||||
/***/ }),
|
||||
/* 4 */
|
||||
/***/ (function(module, exports, __webpack_require__) {
|
||||
|
||||
var closest = __webpack_require__(5);
|
||||
|
||||
/**
|
||||
* Delegates event to a selector.
|
||||
*
|
||||
* @param {Element} element
|
||||
* @param {String} selector
|
||||
* @param {String} type
|
||||
* @param {Function} callback
|
||||
* @param {Boolean} useCapture
|
||||
* @return {Object}
|
||||
*/
|
||||
function _delegate(element, selector, type, callback, useCapture) {
|
||||
var listenerFn = listener.apply(this, arguments);
|
||||
|
||||
element.addEventListener(type, listenerFn, useCapture);
|
||||
|
||||
return {
|
||||
destroy: function() {
|
||||
element.removeEventListener(type, listenerFn, useCapture);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Delegates event to a selector.
|
||||
*
|
||||
* @param {Element|String|Array} [elements]
|
||||
* @param {String} selector
|
||||
* @param {String} type
|
||||
* @param {Function} callback
|
||||
* @param {Boolean} useCapture
|
||||
* @return {Object}
|
||||
*/
|
||||
function delegate(elements, selector, type, callback, useCapture) {
|
||||
// Handle the regular Element usage
|
||||
if (typeof elements.addEventListener === 'function') {
|
||||
return _delegate.apply(null, arguments);
|
||||
}
|
||||
|
||||
// Handle Element-less usage, it defaults to global delegation
|
||||
if (typeof type === 'function') {
|
||||
// Use `document` as the first parameter, then apply arguments
|
||||
// This is a short way to .unshift `arguments` without running into deoptimizations
|
||||
return _delegate.bind(null, document).apply(null, arguments);
|
||||
}
|
||||
|
||||
// Handle Selector-based usage
|
||||
if (typeof elements === 'string') {
|
||||
elements = document.querySelectorAll(elements);
|
||||
}
|
||||
|
||||
// Handle Array-like based usage
|
||||
return Array.prototype.map.call(elements, function (element) {
|
||||
return _delegate(element, selector, type, callback, useCapture);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds closest match and invokes callback.
|
||||
*
|
||||
* @param {Element} element
|
||||
* @param {String} selector
|
||||
* @param {String} type
|
||||
* @param {Function} callback
|
||||
* @return {Function}
|
||||
*/
|
||||
function listener(element, selector, type, callback) {
|
||||
return function(e) {
|
||||
e.delegateTarget = closest(e.target, selector);
|
||||
|
||||
if (e.delegateTarget) {
|
||||
callback.call(element, e);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = delegate;
|
||||
|
||||
|
||||
/***/ }),
|
||||
/* 5 */
|
||||
/***/ (function(module, exports) {
|
||||
|
||||
var DOCUMENT_NODE_TYPE = 9;
|
||||
|
||||
/**
|
||||
* A polyfill for Element.matches()
|
||||
*/
|
||||
if (typeof Element !== 'undefined' && !Element.prototype.matches) {
|
||||
var proto = Element.prototype;
|
||||
|
||||
proto.matches = proto.matchesSelector ||
|
||||
proto.mozMatchesSelector ||
|
||||
proto.msMatchesSelector ||
|
||||
proto.oMatchesSelector ||
|
||||
proto.webkitMatchesSelector;
|
||||
}
|
||||
|
||||
/**
|
||||
* Finds the closest parent that matches a selector.
|
||||
*
|
||||
* @param {Element} element
|
||||
* @param {String} selector
|
||||
* @return {Function}
|
||||
*/
|
||||
function closest (element, selector) {
|
||||
while (element && element.nodeType !== DOCUMENT_NODE_TYPE) {
|
||||
if (typeof element.matches === 'function' &&
|
||||
element.matches(selector)) {
|
||||
return element;
|
||||
}
|
||||
element = element.parentNode;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = closest;
|
||||
|
||||
|
||||
/***/ }),
|
||||
/* 6 */
|
||||
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
||||
|
||||
"use strict";
|
||||
__webpack_require__.r(__webpack_exports__);
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/select/src/select.js
|
||||
var src_select = __webpack_require__(0);
|
||||
var select_default = /*#__PURE__*/__webpack_require__.n(src_select);
|
||||
|
||||
// CONCATENATED MODULE: ./src/clipboard-action.js
|
||||
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
||||
|
||||
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
||||
|
||||
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Inner class which performs selection from either `text` or `target`
|
||||
* properties and then executes copy or cut operations.
|
||||
*/
|
||||
|
||||
var clipboard_action_ClipboardAction = function () {
|
||||
/**
|
||||
* @param {Object} options
|
||||
*/
|
||||
function ClipboardAction(options) {
|
||||
_classCallCheck(this, ClipboardAction);
|
||||
|
||||
this.resolveOptions(options);
|
||||
this.initSelection();
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines base properties passed from constructor.
|
||||
* @param {Object} options
|
||||
*/
|
||||
|
||||
|
||||
_createClass(ClipboardAction, [{
|
||||
key: 'resolveOptions',
|
||||
value: function resolveOptions() {
|
||||
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||
|
||||
this.action = options.action;
|
||||
this.container = options.container;
|
||||
this.emitter = options.emitter;
|
||||
this.target = options.target;
|
||||
this.text = options.text;
|
||||
this.trigger = options.trigger;
|
||||
|
||||
this.selectedText = '';
|
||||
}
|
||||
|
||||
/**
|
||||
* Decides which selection strategy is going to be applied based
|
||||
* on the existence of `text` and `target` properties.
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'initSelection',
|
||||
value: function initSelection() {
|
||||
if (this.text) {
|
||||
this.selectFake();
|
||||
} else if (this.target) {
|
||||
this.selectTarget();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a fake textarea element, sets its value from `text` property,
|
||||
* and makes a selection on it.
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'selectFake',
|
||||
value: function selectFake() {
|
||||
var _this = this;
|
||||
|
||||
var isRTL = document.documentElement.getAttribute('dir') == 'rtl';
|
||||
|
||||
this.removeFake();
|
||||
|
||||
this.fakeHandlerCallback = function () {
|
||||
return _this.removeFake();
|
||||
};
|
||||
this.fakeHandler = this.container.addEventListener('click', this.fakeHandlerCallback) || true;
|
||||
|
||||
this.fakeElem = document.createElement('textarea');
|
||||
// Prevent zooming on iOS
|
||||
this.fakeElem.style.fontSize = '12pt';
|
||||
// Reset box model
|
||||
this.fakeElem.style.border = '0';
|
||||
this.fakeElem.style.padding = '0';
|
||||
this.fakeElem.style.margin = '0';
|
||||
// Move element out of screen horizontally
|
||||
this.fakeElem.style.position = 'absolute';
|
||||
this.fakeElem.style[isRTL ? 'right' : 'left'] = '-9999px';
|
||||
// Move element to the same position vertically
|
||||
var yPosition = window.pageYOffset || document.documentElement.scrollTop;
|
||||
this.fakeElem.style.top = yPosition + 'px';
|
||||
|
||||
this.fakeElem.setAttribute('readonly', '');
|
||||
this.fakeElem.value = this.text;
|
||||
|
||||
this.container.appendChild(this.fakeElem);
|
||||
|
||||
this.selectedText = select_default()(this.fakeElem);
|
||||
this.copyText();
|
||||
}
|
||||
|
||||
/**
|
||||
* Only removes the fake element after another click event, that way
|
||||
* a user can hit `Ctrl+C` to copy because selection still exists.
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'removeFake',
|
||||
value: function removeFake() {
|
||||
if (this.fakeHandler) {
|
||||
this.container.removeEventListener('click', this.fakeHandlerCallback);
|
||||
this.fakeHandler = null;
|
||||
this.fakeHandlerCallback = null;
|
||||
}
|
||||
|
||||
if (this.fakeElem) {
|
||||
this.container.removeChild(this.fakeElem);
|
||||
this.fakeElem = null;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Selects the content from element passed on `target` property.
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'selectTarget',
|
||||
value: function selectTarget() {
|
||||
this.selectedText = select_default()(this.target);
|
||||
this.copyText();
|
||||
}
|
||||
|
||||
/**
|
||||
* Executes the copy operation based on the current selection.
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'copyText',
|
||||
value: function copyText() {
|
||||
var succeeded = void 0;
|
||||
|
||||
try {
|
||||
succeeded = document.execCommand(this.action);
|
||||
} catch (err) {
|
||||
succeeded = false;
|
||||
}
|
||||
|
||||
this.handleResult(succeeded);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fires an event based on the copy operation result.
|
||||
* @param {Boolean} succeeded
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'handleResult',
|
||||
value: function handleResult(succeeded) {
|
||||
this.emitter.emit(succeeded ? 'success' : 'error', {
|
||||
action: this.action,
|
||||
text: this.selectedText,
|
||||
trigger: this.trigger,
|
||||
clearSelection: this.clearSelection.bind(this)
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Moves focus away from `target` and back to the trigger, removes current selection.
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'clearSelection',
|
||||
value: function clearSelection() {
|
||||
if (this.trigger) {
|
||||
this.trigger.focus();
|
||||
}
|
||||
document.activeElement.blur();
|
||||
window.getSelection().removeAllRanges();
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the `action` to be performed which can be either 'copy' or 'cut'.
|
||||
* @param {String} action
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'destroy',
|
||||
|
||||
|
||||
/**
|
||||
* Destroy lifecycle.
|
||||
*/
|
||||
value: function destroy() {
|
||||
this.removeFake();
|
||||
}
|
||||
}, {
|
||||
key: 'action',
|
||||
set: function set() {
|
||||
var action = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'copy';
|
||||
|
||||
this._action = action;
|
||||
|
||||
if (this._action !== 'copy' && this._action !== 'cut') {
|
||||
throw new Error('Invalid "action" value, use either "copy" or "cut"');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the `action` property.
|
||||
* @return {String}
|
||||
*/
|
||||
,
|
||||
get: function get() {
|
||||
return this._action;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the `target` property using an element
|
||||
* that will be have its content copied.
|
||||
* @param {Element} target
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'target',
|
||||
set: function set(target) {
|
||||
if (target !== undefined) {
|
||||
if (target && (typeof target === 'undefined' ? 'undefined' : _typeof(target)) === 'object' && target.nodeType === 1) {
|
||||
if (this.action === 'copy' && target.hasAttribute('disabled')) {
|
||||
throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');
|
||||
}
|
||||
|
||||
if (this.action === 'cut' && (target.hasAttribute('readonly') || target.hasAttribute('disabled'))) {
|
||||
throw new Error('Invalid "target" attribute. You can\'t cut text from elements with "readonly" or "disabled" attributes');
|
||||
}
|
||||
|
||||
this._target = target;
|
||||
} else {
|
||||
throw new Error('Invalid "target" value, use a valid Element');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the `target` property.
|
||||
* @return {String|HTMLElement}
|
||||
*/
|
||||
,
|
||||
get: function get() {
|
||||
return this._target;
|
||||
}
|
||||
}]);
|
||||
|
||||
return ClipboardAction;
|
||||
}();
|
||||
|
||||
/* harmony default export */ var clipboard_action = (clipboard_action_ClipboardAction);
|
||||
// EXTERNAL MODULE: ./node_modules/tiny-emitter/index.js
|
||||
var tiny_emitter = __webpack_require__(1);
|
||||
var tiny_emitter_default = /*#__PURE__*/__webpack_require__.n(tiny_emitter);
|
||||
|
||||
// EXTERNAL MODULE: ./node_modules/good-listener/src/listen.js
|
||||
var listen = __webpack_require__(2);
|
||||
var listen_default = /*#__PURE__*/__webpack_require__.n(listen);
|
||||
|
||||
// CONCATENATED MODULE: ./src/clipboard.js
|
||||
var clipboard_typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
|
||||
|
||||
var clipboard_createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
|
||||
|
||||
function clipboard_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
||||
|
||||
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
|
||||
|
||||
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Base class which takes one or more elements, adds event listeners to them,
|
||||
* and instantiates a new `ClipboardAction` on each click.
|
||||
*/
|
||||
|
||||
var clipboard_Clipboard = function (_Emitter) {
|
||||
_inherits(Clipboard, _Emitter);
|
||||
|
||||
/**
|
||||
* @param {String|HTMLElement|HTMLCollection|NodeList} trigger
|
||||
* @param {Object} options
|
||||
*/
|
||||
function Clipboard(trigger, options) {
|
||||
clipboard_classCallCheck(this, Clipboard);
|
||||
|
||||
var _this = _possibleConstructorReturn(this, (Clipboard.__proto__ || Object.getPrototypeOf(Clipboard)).call(this));
|
||||
|
||||
_this.resolveOptions(options);
|
||||
_this.listenClick(trigger);
|
||||
return _this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines if attributes would be resolved using internal setter functions
|
||||
* or custom functions that were passed in the constructor.
|
||||
* @param {Object} options
|
||||
*/
|
||||
|
||||
|
||||
clipboard_createClass(Clipboard, [{
|
||||
key: 'resolveOptions',
|
||||
value: function resolveOptions() {
|
||||
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
||||
|
||||
this.action = typeof options.action === 'function' ? options.action : this.defaultAction;
|
||||
this.target = typeof options.target === 'function' ? options.target : this.defaultTarget;
|
||||
this.text = typeof options.text === 'function' ? options.text : this.defaultText;
|
||||
this.container = clipboard_typeof(options.container) === 'object' ? options.container : document.body;
|
||||
}
|
||||
|
||||
/**
|
||||
* Adds a click event listener to the passed trigger.
|
||||
* @param {String|HTMLElement|HTMLCollection|NodeList} trigger
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'listenClick',
|
||||
value: function listenClick(trigger) {
|
||||
var _this2 = this;
|
||||
|
||||
this.listener = listen_default()(trigger, 'click', function (e) {
|
||||
return _this2.onClick(e);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines a new `ClipboardAction` on each click event.
|
||||
* @param {Event} e
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'onClick',
|
||||
value: function onClick(e) {
|
||||
var trigger = e.delegateTarget || e.currentTarget;
|
||||
|
||||
if (this.clipboardAction) {
|
||||
this.clipboardAction = null;
|
||||
}
|
||||
|
||||
this.clipboardAction = new clipboard_action({
|
||||
action: this.action(trigger),
|
||||
target: this.target(trigger),
|
||||
text: this.text(trigger),
|
||||
container: this.container,
|
||||
trigger: trigger,
|
||||
emitter: this
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Default `action` lookup function.
|
||||
* @param {Element} trigger
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'defaultAction',
|
||||
value: function defaultAction(trigger) {
|
||||
return getAttributeValue('action', trigger);
|
||||
}
|
||||
|
||||
/**
|
||||
* Default `target` lookup function.
|
||||
* @param {Element} trigger
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'defaultTarget',
|
||||
value: function defaultTarget(trigger) {
|
||||
var selector = getAttributeValue('target', trigger);
|
||||
|
||||
if (selector) {
|
||||
return document.querySelector(selector);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the support of the given action, or all actions if no action is
|
||||
* given.
|
||||
* @param {String} [action]
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'defaultText',
|
||||
|
||||
|
||||
/**
|
||||
* Default `text` lookup function.
|
||||
* @param {Element} trigger
|
||||
*/
|
||||
value: function defaultText(trigger) {
|
||||
return getAttributeValue('text', trigger);
|
||||
}
|
||||
|
||||
/**
|
||||
* Destroy lifecycle.
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: 'destroy',
|
||||
value: function destroy() {
|
||||
this.listener.destroy();
|
||||
|
||||
if (this.clipboardAction) {
|
||||
this.clipboardAction.destroy();
|
||||
this.clipboardAction = null;
|
||||
}
|
||||
}
|
||||
}], [{
|
||||
key: 'isSupported',
|
||||
value: function isSupported() {
|
||||
var action = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ['copy', 'cut'];
|
||||
|
||||
var actions = typeof action === 'string' ? [action] : action;
|
||||
var support = !!document.queryCommandSupported;
|
||||
|
||||
actions.forEach(function (action) {
|
||||
support = support && !!document.queryCommandSupported(action);
|
||||
});
|
||||
|
||||
return support;
|
||||
}
|
||||
}]);
|
||||
|
||||
return Clipboard;
|
||||
}(tiny_emitter_default.a);
|
||||
|
||||
/**
|
||||
* Helper function to retrieve attribute value.
|
||||
* @param {String} suffix
|
||||
* @param {Element} element
|
||||
*/
|
||||
|
||||
|
||||
function getAttributeValue(suffix, element) {
|
||||
var attribute = 'data-clipboard-' + suffix;
|
||||
|
||||
if (!element.hasAttribute(attribute)) {
|
||||
return;
|
||||
}
|
||||
|
||||
return element.getAttribute(attribute);
|
||||
}
|
||||
|
||||
/* harmony default export */ var clipboard = __webpack_exports__["default"] = (clipboard_Clipboard);
|
||||
|
||||
/***/ })
|
||||
/******/ ])["default"];
|
||||
});
|
3
static/js/clipboard.js:Zone.Identifier
Normal file
3
static/js/clipboard.js:Zone.Identifier
Normal file
|
@ -0,0 +1,3 @@
|
|||
[ZoneTransfer]
|
||||
ZoneId=3
|
||||
ReferrerUrl=C:\Users\rushi\Downloads\clipboard.js-master.zip
|
7
static/js/clipboard.min.js
vendored
Normal file
7
static/js/clipboard.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
3
static/js/clipboard.min.js:Zone.Identifier
Normal file
3
static/js/clipboard.min.js:Zone.Identifier
Normal file
|
@ -0,0 +1,3 @@
|
|||
[ZoneTransfer]
|
||||
ZoneId=3
|
||||
ReferrerUrl=C:\Users\rushi\Downloads\clipboard.js-master.zip
|
19
static/js/main.js
Normal file
19
static/js/main.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
function selectAll() {
|
||||
var myForm = document.forms['form'];
|
||||
for( var i=0; i < myForm.length; i++ ) {
|
||||
myForm.elements[i].checked = "checked";
|
||||
}
|
||||
$('html, body').animate({
|
||||
scrollTop: $("#div1").offset().top
|
||||
}, 1000);
|
||||
}
|
||||
|
||||
function toggle() {
|
||||
document.getElementById("who").classList.toggle("hide");
|
||||
}
|
||||
|
||||
function copyLetter() {
|
||||
document.getElementById('copyLetterButton').innerHTML = "Copied!";
|
||||
}
|
||||
|
||||
var clipboard = new ClipboardJS('.btn');
|
21
urls.py
Normal file
21
urls.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
"""config URL Configuration
|
||||
|
||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
||||
https://docs.djangoproject.com/en/3.1/topics/http/urls/
|
||||
Examples:
|
||||
Function views
|
||||
1. Add an import: from my_app import views
|
||||
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
||||
Class-based views
|
||||
1. Add an import: from other_app.views import Home
|
||||
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
||||
Including another URLconf
|
||||
1. Import the include() function: from django.urls import include, path
|
||||
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
||||
"""
|
||||
from django.contrib import admin
|
||||
from django.urls import path
|
||||
|
||||
urlpatterns = [
|
||||
path('admin/', admin.site.urls),
|
||||
]
|
16
wsgi.py
Normal file
16
wsgi.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
"""
|
||||
WSGI config for config project.
|
||||
|
||||
It exposes the WSGI callable as a module-level variable named ``application``.
|
||||
|
||||
For more information on this file, see
|
||||
https://docs.djangoproject.com/en/3.1/howto/deployment/wsgi/
|
||||
"""
|
||||
|
||||
import os
|
||||
|
||||
from django.core.wsgi import get_wsgi_application
|
||||
|
||||
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'config.settings')
|
||||
|
||||
application = get_wsgi_application()
|
Loading…
Reference in New Issue
Block a user