parent
8d269c8ed3
commit
ebb2e4b045
|
@ -113,7 +113,7 @@ input, textarea {
|
||||||
dl {
|
dl {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
#closing_text {
|
#closingText {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -40,11 +40,11 @@
|
||||||
<dl>
|
<dl>
|
||||||
{{ render_field(form.username) }}
|
{{ render_field(form.username) }}
|
||||||
{{ render_field(form.company) }}
|
{{ render_field(form.company) }}
|
||||||
{{ render_field(form.job_and_pronoun) }}
|
{{ render_field(form.jobAndPronoun) }}
|
||||||
{{ render_field(form.skill_types) }}
|
{{ render_field(form.skillTypes) }}
|
||||||
{{ render_field(form.my_skills) }}
|
{{ render_field(form.mySkills) }}
|
||||||
{{ render_field(form.body, 'class=bigtext') }}
|
{{ render_field(form.body, 'class=bigtext') }}
|
||||||
{{ render_field(form.closing_text) }}
|
{{ render_field(form.closingText) }}
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
{% if errors %}
|
{% if errors %}
|
||||||
|
|
16
latty.py
16
latty.py
|
@ -28,20 +28,20 @@ base_tex_text = open(proj_dir + "/writing_templates/base.tex", "r").read()
|
||||||
class CLData:
|
class CLData:
|
||||||
username: str
|
username: str
|
||||||
company: str
|
company: str
|
||||||
job_and_pronoun: str
|
jobAndPronoun: str
|
||||||
skill_types: str
|
skillTypes: str
|
||||||
my_skills: str
|
mySkills: str
|
||||||
closing_text: str
|
closingText: str
|
||||||
body: str
|
body: str
|
||||||
|
|
||||||
def get_pairs(self):
|
def get_pairs(self):
|
||||||
return [
|
return [
|
||||||
("username", self.username),
|
("username", self.username),
|
||||||
("company", self.company),
|
("company", self.company),
|
||||||
("job_and_pronoun", self.job_and_pronoun),
|
("jobAndPronoun", self.jobAndPronoun),
|
||||||
("skill_types", self.skill_types),
|
("skillTypes", self.skillTypes),
|
||||||
("my_skills", self.my_skills),
|
("mySkills", self.mySkills),
|
||||||
("closing_text", self.closing_text),
|
("closingText", self.closingText),
|
||||||
("body", self.body),
|
("body", self.body),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
20
writing.py
20
writing.py
|
@ -26,23 +26,23 @@ class CLForm(Form):
|
||||||
[validators.Length(min=2, max=99)],
|
[validators.Length(min=2, max=99)],
|
||||||
default="BananaCorp"
|
default="BananaCorp"
|
||||||
)
|
)
|
||||||
job_and_pronoun = StringField(
|
jobAndPronoun = StringField(
|
||||||
'Job and Pronoun (a/an):',
|
'Job and Pronoun (a/an):',
|
||||||
[validators.Length(min=4, max=99)],
|
[validators.Length(min=4, max=99)],
|
||||||
default="a banana stocker"
|
default="a banana stocker"
|
||||||
)
|
)
|
||||||
skill_types = StringField(
|
skillTypes = StringField(
|
||||||
'Skill Type:',
|
'Skill Type:',
|
||||||
[validators.Length(min=2, max=99)],
|
[validators.Length(min=2, max=99)],
|
||||||
default="practical"
|
default="practical"
|
||||||
)
|
)
|
||||||
my_skills = StringField(
|
mySkills = StringField(
|
||||||
'My Skills:',
|
'My Skills:',
|
||||||
[validators.Length(min=2, max=99)],
|
[validators.Length(min=2, max=99)],
|
||||||
default="stocking bananas"
|
default="stocking bananas"
|
||||||
)
|
)
|
||||||
|
|
||||||
closing_text = TextAreaField(
|
closingText = TextAreaField(
|
||||||
'Closing Text:',
|
'Closing Text:',
|
||||||
[validators.Length(min=2, max=99)],
|
[validators.Length(min=2, max=99)],
|
||||||
default="I look forward to hearing from you"
|
default="I look forward to hearing from you"
|
||||||
|
@ -53,8 +53,8 @@ class CLForm(Form):
|
||||||
[validators.Length(min=4, max=9999)],
|
[validators.Length(min=4, max=9999)],
|
||||||
default=(
|
default=(
|
||||||
"My name is {\\username}. I'm excited for the opportunity to work as "
|
"My name is {\\username}. I'm excited for the opportunity to work as "
|
||||||
"{\\job_and_pronoun} with your company. I think my {\\skill_types} knowledge "
|
"{\\jobAndPronoun} with your company. I think my {\\skillTypes} knowledge "
|
||||||
"of {\\my_skills} can contribute a lot to your team.\n\n"
|
"of {\\mySkills} can contribute a lot to your team.\n\n"
|
||||||
|
|
||||||
"I am passionate about what I do, and I think we would work well together.\n\n"
|
"I am passionate about what I do, and I think we would work well together.\n\n"
|
||||||
|
|
||||||
|
@ -106,10 +106,10 @@ def index_post():
|
||||||
data = CLData(
|
data = CLData(
|
||||||
username=form.username.data,
|
username=form.username.data,
|
||||||
company=form.company.data,
|
company=form.company.data,
|
||||||
job_and_pronoun=form.job_and_pronoun.data,
|
jobAndPronoun=form.jobAndPronoun.data,
|
||||||
skill_types=form.skill_types.data,
|
skillTypes=form.skillTypes.data,
|
||||||
my_skills=form.my_skills.data,
|
mySkills=form.mySkills.data,
|
||||||
closing_text=form.closing_text.data,
|
closingText=form.closingText.data,
|
||||||
body=form.body.data,
|
body=form.body.data,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
\body
|
\body
|
||||||
|
|
||||||
\closing{\closing\_text,}
|
\closing{\closingText,}
|
||||||
|
|
||||||
\end{letter}
|
\end{letter}
|
||||||
\end{document}
|
\end{document}
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
|
|
||||||
\def \thecompany {BananCorp}
|
\def \thecompany {BananCorp}
|
||||||
\def \job\_and\_pronoun {PusherBoy }
|
\def \jobAndPronoun {PusherBoy }
|
||||||
\def \skill\_types {broad, practical }
|
\def \skillTypes {broad, practical }
|
||||||
\def \my\_skills {software design principles}
|
\def \mySkills {software design principles}
|
||||||
% CoverLetter.tex - Create a cover letter using an included vars.tex
|
% CoverLetter.tex - Create a cover letter using an included vars.tex
|
||||||
|
|
||||||
% \def \username {Sage Vaillancourt}
|
% \def \username {Sage Vaillancourt}
|
||||||
% \def \thecompany {Travelers}
|
% \def \thecompany {Travelers}
|
||||||
% \def \job\_and\_pronoun {a Software Engineer }
|
% \def \jobAndPronoun {a Software Engineer }
|
||||||
% \def \skill\_types {broad, practical }
|
% \def \skillTypes {broad, practical }
|
||||||
% \def \my\_skills {computer systems}
|
% \def \mySkills {computer systems}
|
||||||
|
|
||||||
\include{vars}
|
\include{vars}
|
||||||
|
|
||||||
|
@ -23,8 +23,8 @@
|
||||||
\opening{Dear \thecompany,}
|
\opening{Dear \thecompany,}
|
||||||
|
|
||||||
My name is Sage Vaillancourt. I'm excited for the opportunity to work as
|
My name is Sage Vaillancourt. I'm excited for the opportunity to work as
|
||||||
\job\_and\_pronoun with your company. It's clear that you're looking for a hard worker who
|
\jobAndPronoun with your company. It's clear that you're looking for a hard worker who
|
||||||
has a \skill\_types knowledge of \my\_skills, so I'm certain that I'd be a
|
has a \skillTypes knowledge of \mySkills, so I'm certain that I'd be a
|
||||||
perfect fit to work with you.
|
perfect fit to work with you.
|
||||||
|
|
||||||
I am someone who has been passionate about computers my whole life, and I have
|
I am someone who has been passionate about computers my whole life, and I have
|
||||||
|
|
Loading…
Reference in New Issue