Skip to content

Commit

Permalink
experience list page
Browse files Browse the repository at this point in the history
  • Loading branch information
gedankenstuecke committed Jun 7, 2024
1 parent d577e07 commit 3b49a5f
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions server/apps/main/templates/main/experiences_page.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,20 @@
<div class="container">
<div class="row">
<div class="col-lg-12 text-left">
<h1 class="big-heading">View Stories</h1>
<h1 class="big-heading">View stories</h1>
</div>
<div class="col-lg-12 text-left">
<p class="intro-text">Autistic people often have different sensory processing to people who are not autistic.
By collecting together lots of autistic people's experiences, we can change spaces so that they are
better for autistic people.
<p class="intro-text">
Autistic people’s senses often work differently to those of non-autistic people,
creating all sorts of challenges in day-to-day life. By collecting your experiences,
we can learn more and use the information to influence decision-makers to make spaces more autism-friendly.
</p>
</div>
</div>
<div class="row">
<div class="col">
<a href="{% url 'main:share_exp' %}" class="float-end btn btn-light btn-lg">
Add Story
Add story
</a>
</div>
</div>
Expand All @@ -52,12 +53,11 @@ <h1 class="big-heading">View Stories</h1>
<input class="form-control mb-2" id="inlineFormInput" placeholder="Search Stories" value="{{ searched }}" type="text" name="searched" />
</div>
<div class="col-md-2">
<button class="btn btn-primary mb-2" type="submit">Search Stories</button>
<button class="btn btn-primary mb-2" type="submit">Search stories</button>
</div>
</div>
<div class="trigger-warning-message"> We have excluded potentially
triggering content, please select any categories that you would be
comfortable seeing
<div class="trigger-warning-message">
We have excluded potentially triggering content. Please select any categories you would be comfortable seeing:
</div>
</div>

Expand Down Expand Up @@ -87,41 +87,41 @@ <h1 class="big-heading">View Stories</h1>
<input class="form-check-input"
type="checkbox"
role="switch"
id="drug-checkbox"
name="drug"
id="violence-checkbox"
name="violence"
value="True"
{{ checkdrug|yesno:"checked,unchecked" }} />
<label class="form-check-label" for="drug-checkbox">Drug and/or alcohol misuse</label>
{{ checkviolence|yesno:"checked,unchecked" }} />
<label class="form-check-label" for="violence-checkbox">Violence and assault</label>
</div>
<div class="form-check form-switch">
<input class="form-check-input"
type="checkbox"
role="switch"
id="negbody-checkbox"
name="negbody"
id="drug-checkbox"
name="drug"
value="True"
{{ checknegbody|yesno:"checked,unchecked" }} />
<label class="form-check-label" for="negbody-checkbox">Negative body image</label>
{{ checkdrug|yesno:"checked,unchecked" }} />
<label class="form-check-label" for="drug-checkbox">Drug and/or alcohol misuse</label>
</div>
<div class="form-check form-switch">
<input class="form-check-input"
type="checkbox"
role="switch"
id="violence-checkbox"
name="violence"
id="mentalhealth-checkbox"
name="mentalhealth"
value="True"
{{ checkviolence|yesno:"checked,unchecked" }} />
<label class="form-check-label" for="violence-checkbox">Violence and assault</label>
{{ checkmentalhealth|yesno:"checked,unchecked" }} />
<label class="form-check-label" for="mentalhealth-checkbox">Mental health issues</label>
</div>
<div class="form-check form-switch">
<input class="form-check-input"
type="checkbox"
role="switch"
id="mentalhealth-checkbox"
name="mentalhealth"
id="negbody-checkbox"
name="negbody"
value="True"
{{ checkmentalhealth|yesno:"checked,unchecked" }} />
<label class="form-check-label" for="mentalhealth-checkbox">Mental health issues</label>
{{ checknegbody|yesno:"checked,unchecked" }} />
<label class="form-check-label" for="negbody-checkbox">Negative body image</label>
</div>
<div class="form-check form-switch">
<input class="form-check-input"
Expand Down

0 comments on commit 3b49a5f

Please sign in to comment.