This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Filled about page, changed footer look, moved links from menu to footer
Closes #4
- Loading branch information
1 parent
c5fb036
commit acc221b
Showing
5 changed files
with
85 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 70 additions & 1 deletion
71
lifesaving_rankings/templates/lifesaving_rankings/about.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,79 @@ | ||
{% extends "lifesaving_rankings/base.html" %} | ||
{% load django_bootstrap_breadcrumbs %} | ||
|
||
{% block head_title %} | ||
About | ||
{% endblock %} | ||
|
||
{% block breadcrumbs %} | ||
|
||
{% breadcrumb "Home" "/" %} | ||
{% breadcrumb "About" "about" %} | ||
|
||
{% render_breadcrumbs "lifesaving_rankings/breadcrumb_template.html" %} | ||
|
||
{% endblock %} | ||
|
||
{% block content %} | ||
|
||
<h1 class="ui header">About LifesavingRankings.com</h1> | ||
<h1 class="ui header centered">About LifesavingRankings.com</h1> | ||
|
||
<div class="ui centered grid"> | ||
<div class="ten wide column"> | ||
<p> | ||
LifesavingRankings.com contains the latest rankings based on the times recorded in all major | ||
international and national competitions for individual pool lifesaving competitions.<br> | ||
LifesavingRankings.com is a project initiated and created by Ruben van Erk, | ||
a web-developer and <a href="{% url 'athlete-overview' 'ruben-van-erk' %}">competitive lifesaver</a> from | ||
The Netherlands.<br> | ||
This website is open-source. Any help is appreciated. | ||
Source code is available at <a href="https://github.com/rubenvanerk/lifesavingrankings" target="_blank">Github</a>. | ||
</p> | ||
<p> | ||
LifesavingRankings.com is, and will always be free to use. | ||
If you want to support what I'm doing, you can | ||
<a href="https://www.buymeacoffee.com/RubenvanErk" target="_blank">buy me a coffee</a>! | ||
</p> | ||
|
||
<h2 class="ui header">About importing results</h2> | ||
<p> | ||
Results are imported from various sources with the use of <a | ||
href="https://github.com/rubenvanerk/competition-parser" target="_blank">a program</a> created by | ||
LifesavingRankings.com. | ||
Most of these are in PDF format, which makes importing complicated due to the vast amount of different | ||
formats. | ||
Errors are easily made using this error-prone method.<br> | ||
Please report missing competitions or any mistakes you may find to results@lifesavingrankings.com. | ||
</p> | ||
<p> | ||
A common problem when importing results is duplicated athletes. | ||
An athlete's name cannot be matched when it's spelled slightly different. When this happens, a new | ||
profile is created. | ||
You can easily report these duplicated profiles by searching for an athlete, | ||
selecting the duplicates and hit the button at the top of the results: '<em>Report selected athletes as | ||
duplicates</em>'. | ||
</p> | ||
|
||
{# <h2 class="ui header">About points</h2>#} | ||
{# <p>#} | ||
{# Points allows for comparison between different events and genders.#} | ||
{# The points system is based on the world record from the previous year.#} | ||
{# This world record will equal to 1000 points.#} | ||
{# Every yea#} | ||
{# </p>#} | ||
|
||
<h2 class="ui header">Disclaimer</h2> | ||
<p> | ||
If you require any more information or have any questions about our site's disclaimer, | ||
please feel free to contact us by email at ruben@lifesavingrankings.com | ||
</p> | ||
<p> | ||
All the information on this website - wwww.lifesavingrankings.com - is published in good faith and for | ||
general information purpose only. LifesavingRankings.com does not make any warranties about the | ||
completeness, reliability and accuracy of this information. Any action you take upon the information you | ||
find on this website (LifesavingRankings.com), is strictly at your own risk. LifesavingRankings.com will | ||
not be liable for any losses and/or damages in connection with the use of our website. | ||
</p> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters