added instructions

master
Kostanjevec 2022-06-28 17:04:22 +02:00
parent afbab30f6d
commit c57cd62fdf
1 changed files with 45 additions and 5 deletions

View File

@ -1,19 +1,59 @@
{% extends 'base.html' %}
{% block header %}
<head>Instructions</head>
<h1>Instructions</h1>
{% endblock %}
{% block content %}
<p>
ContentMatcher helps you sort through your content and share it with others.
Contentmatcher is a GIA prototype that tries to help you engage with your content and share it with other users. It assumes that you have a heap of content that you would like to reconsider. This heap can take many forms such vast libraries of PDFs on your computer or a long lists of bookmarks.
</p>
<p>
The app will help you get through this content step by step and continue to show you your content again based on the interest you express as well present you with shared contnet. If you and at least one more person express a high interest in an <strong>item</strong> a match will appear on your <a href="{{ url_for('matches.index') }}">matches</a> page. There you can send them an email to talk about the <strong>item</strong> your interested in.
</p>
<p>
Some definitions:
<ul>
<li>
An <strong>item</strong> is a unit of content (like a PDF you upload).
</li>
<li>
<strong>Items</strong> are private by default but they can be shared.
</li>
<li>
A <strong>collection</strong> made up of all your private items and the items shared with you.
</li>
<li>
When you start a new session Contentmatcher will create a <strong>deck</strong>, which is a small part of the <strong>collection</strong>.
</li>
</ul>
</p>
<h1>Adding your content</h1>
<h2>Importing your content</h2>
<p>
For now you they only way to import content is to <a href='{{ url_for('upload.index')}}'>upload</a> your PDFs. We're figuring out how to add diffent lists of links like browser bookmarks, liked tweets and "watch later" youtube videos.
</p>
<h1>Sorting your content</h1>
<h2>Sessions</h2>
<p>
Going through sessions is the main activity in using Contentmatcher.
A session consists of rating and potentially shareing items in a <strong>deck</strong>. You can adjust the size of your <strong>deck</strong> in the settings.
<h1>Sharing content</h1>
In sessions you rate them with <mark style="color: black; background-color: #736B1E;">yes</mark>, <mark style="color: black; background-color: #ED8008;">maybe</mark>, <mark style="color: black; background-color: #ED3f1C;">no</mark> and <mark style="color: black; background-color: #BF1B1B;">delete</mark> buttons. It's weird because there is no question, maybe the question posed is: "are you really interested in this <strong>item</strong>?"
</p>
<p>
There is also the <mark style="color: black; background-color: #D9D2C6;">share</mark> button. This will create a new <strong>item</strong> with this content for all other users, so it will appear in their decks from now on.
</p>
<h2>Matches</h2>
<p>
If you and at least one other user rate an item with a <mark style="color: black; background-color: #736B1E;">yes</mark> then a match will appear on your <a href="{{ url_for('match') }}">matches</a> page. There you can send a email to talk.
</p>
<h2>Feedback</h2>
<p>
If you have any questions, feedback, ideas or if you would like contribute, please contact us at <a href="mailto:gia@kompot.si">gia@kompot.si</a>.
</p>
{% endblock %}