Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,9 @@ Special thanks to Sophie Flynn for creating our website Logo! You can read more
We are using [Font Awesome](https://fontawesome.com/) for the icons throughout our website. Thank you to the Font Awesome team for their excellent work and for making these icons available to the community.

## Acknowledgements
[Aoife Kirby](https://github.com/akirby23) - Backend <br>
[Ciaran Griffin](https://github.com/ciarangriffin93) - Design and venues page <br>
[David Cotter](https://github.com/trxdave) - Design and venues page <br>
[Edgar Kimbugwe](https://github.com/Edgarkimbugwe) - Documentation, footer and about page <br>
[Laura Kondrataite](https://github.com/laurakond/) - Content<br>
[Vernell Clark](https://github.com/VCGithubCode) - Scrum Lead and Project Presentation<br>
[Aoife Kirby](https://github.com/akirby23) - Backend, Database, Deployment, Contact page, Venues page <br>
[Ciaran Griffin](https://github.com/ciarangriffin93) - Design, Wireframes, and Venues page <br>
[David Cotter](https://github.com/trxdave) - Design, Wireframes, and Venues page <br>
[Edgar Kimbugwe](https://github.com/Edgarkimbugwe) - Documentation, Footer, About page, Error pages <br>
[Laura Kondrataite](https://github.com/laurakond/) - Content, Landing Page, Footer, Github Projects Board <br>
[Vernell Clark](https://github.com/VCGithubCode) - Scrum Lead, Header, Overall styling, A little bit of nearly everything else, and Project Presentation<br>
8 changes: 1 addition & 7 deletions templates/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,7 @@ <h5 class="card-title fw-bold members">Ciaran</h5>
src="{% static 'images\david.png' %}" alt="Davidimage">
<div class="card-body text-center">
<h5 class="card-title fw-bold members">David</h5>
<p class="card-text text-justify-custom">Lorem ipsum dolor sit amet, consectetur
adipiscing elit. Fusce laoreet mi sed risus tincidunt sagittis. Aenean a risus
ex. Integer non ultrices felis. Cras vel massa in ipsum mattis efficitur.
Curabitur vitae rhoncus magna. Suspendisse ullamcorper gravida elementum.
Vestibulum ut pellentesque sem. Aenean bibendum maximus velit. Proin eu augue
vel ex aliquam fermentum a eu turpis. Maecenas laoreet, sem id posuere condimentum,
risus velit rutrum mauris, quis.</p>
<p class="card-text text-justify-custom">My background is in architecture, construction, and both mechanical and electrical engineering, where I have developed a comprehensive understanding of various technical and structural disciplines. Now, I am pivoting my career towards Full Stack Development, eager to leverage my extensive background and problem-solving skills in a new and dynamic field. This transition reflects my continuous passion for learning and adapting to new challenges."</p>
</div>
<div class="card-footer text-center">
<a href="https://www.linkedin.com/in/david-cotter-3a4aba80/" target="_blank"
Expand Down
18 changes: 0 additions & 18 deletions venues/templates/venue_list.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,24 +96,6 @@ <h2 class="card-title">{{ venue.name }}</h2>
<i class="fa-solid fa-star"></i> Special features: {{ venue.special_features }}
</p>
</div>

<div class="container mt-3 p-2">
<div class="row gx-4 gx-lg-5">
{% for venue in venue_list %}
<div class="col-md-4 mb-5">
<div class="card h-100">
{% if 'placeholder' in venue.image.url %}
<img src="https://res.cloudinary.com/dxs42sums/image/upload/v1721583416/evelyn-paris-QR_vT8_hBZM-unsplash_wkiekd.jpg" class="card-img-top" alt="Venue">
{% else %}
<img src="{{ venue.image.url }}" class="card-img-top" alt="Venue">
{% endif %}
<div class="card-body">
<h2 class="card-title">{{ venue.name }}</h2>
<p class="card-text"><i class="fa-solid fa-location-dot" id="map"></i> {{ venue.address }}</p>
<p class="card-text"><i class="fa-solid fa-address-book"></i> {{ venue.contact_info }}</p>
<p class="card-text"><i class="fa-regular fa-clock"></i> {{ venue.opening_hours | safe }}</p>
<p class="card-text"><i class="fa-solid fa-star"></i> Special features: {{ venue.special_features }}</p>

</div>
</div>
{% endfor %}
Expand Down