parent
116d4c385c
commit
5a652cb466
@ -0,0 +1,19 @@ |
||||
# Quick start guide |
||||
|
||||
Prepare a [BLT file](https://yingtongli.me/git/OpenTally/about/docs/blt.md) containing the ballot papers in the election. If you would just like to see a demonstration election, you can download a sample BLT file <a href="https://yingtongli.me/git/OpenTally/plain/tests/data/prsa1.blt" target="_blank">here</a>. |
||||
|
||||
Launch OpenTally at <a href="/opentally/stv/" target="_blank">https://yingtongli.me/opentally/stv/</a>. |
||||
|
||||
In the top-right corner of the page, click *Browse* and select the BLT file you prepared or downloaded: |
||||
|
||||
{: style="max-height:45px;display:block;margin:0 auto" } |
||||
|
||||
Click the *Count* button to generate the result sheet for the election: |
||||
|
||||
{: style="max-height:500px;display:block;margin:0 auto" } |
||||
|
||||
<!-- For more details on how to interpret the result sheet, see TODO. --> |
||||
|
||||
To change the STV rules used to count the election, click the *Preset* dropdown at the top of the page, and choose a preset. Alternatively, click *Show advanced options*. A detailed explanation of the various presets and options can be found [here](/opentally/docs/options.html). |
||||
|
||||
Once the count is complete, you can click *Print result* to generate a printable result report or PDF. To ensure the result report displays correctly, check that the paper size in the print window matches the paper size selected in OpenTally, the print orientation is set to landscape, and the scale is set to 100%. |
@ -0,0 +1,37 @@ |
||||
--- |
||||
layout: default |
||||
--- |
||||
|
||||
<section class="py-5"> |
||||
<div class="container px-5"> |
||||
<div class="row"> |
||||
<div class="col-lg-10 order-lg-2"> |
||||
<h1 class="mb-4">{{ page.title }}</h1> |
||||
|
||||
<div class="post-content"> |
||||
{{ content }} |
||||
</div> |
||||
</div> |
||||
<div class="col-lg-2 order-lg-1"> |
||||
<ul class="nav flex-column"> |
||||
<li class="nav-item"><a class="nav-link px-0" href="{{ site.baseurl }}/docs/about.html">About OpenTally</a></li> |
||||
<li class="nav-item"><a class="nav-link px-0" href="{{ site.baseurl }}/docs/quick-start.html">Quick start guide</a></li> |
||||
<li class="nav-item"><a class="nav-link px-0" href="{{ site.baseurl }}/docs/options.html">Advanced options</a></li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</section> |
||||
|
||||
<style type="text/css"> |
||||
.md-content h1 { |
||||
display: none; |
||||
} |
||||
.post-content h2 { |
||||
margin-bottom: 1rem; |
||||
} |
||||
.post-content h3 { |
||||
font-size: 1.5rem; |
||||
margin-bottom: 1rem; |
||||
} |
||||
</style> |
After Width: | Height: | Size: 11 KiB |
After Width: | Height: | Size: 219 KiB |
@ -1,12 +1,6 @@ |
||||
--- |
||||
layout: post |
||||
layout: docs |
||||
title: "About OpenTally" |
||||
--- |
||||
|
||||
<div class="md-content" markdown="1">{% include_absolute '../README.md' %}</div> |
||||
|
||||
<style type="text/css"> |
||||
.md-content h1 { |
||||
display: none; |
||||
} |
||||
</style> |
@ -1,23 +1,10 @@ |
||||
--- |
||||
layout: post |
||||
layout: docs |
||||
title: "Advanced options" |
||||
--- |
||||
|
||||
<div class="md-content" markdown="1">{% include_absolute '../docs/options.md' %}</div> |
||||
|
||||
<style type="text/css"> |
||||
.md-content h1 { |
||||
display: none; |
||||
} |
||||
.md-content h2 { |
||||
margin-bottom: 1rem; |
||||
} |
||||
.md-content h3 { |
||||
font-size: 1.5rem; |
||||
margin-bottom: 1rem; |
||||
} |
||||
</style> |
||||
|
||||
<script> |
||||
document.querySelectorAll('.md-content table').forEach(el => el.classList.add('table')); |
||||
</script> |
||||
|
@ -0,0 +1,6 @@ |
||||
--- |
||||
layout: docs |
||||
title: "Quick start guide" |
||||
--- |
||||
|
||||
<div class="md-content" markdown="1">{% include_absolute '../docs/quick-start.md' %}</div> |
Loading…
Reference in new issue