]> git.ipfire.org Git - people/jschlag/pbs.git/blame - src/templates/docs-users.html
Drop ETA guessing which was never really accurate
[people/jschlag/pbs.git] / src / templates / docs-users.html
CommitLineData
9137135a
MT
1{% extends "docs-base.html" %}
2
f6e6ff79 3{% block title %}{{ _("Documentation") }} - {{ _("User groups") }}{% end block %}
9137135a
MT
4
5{% block body %}
f6e6ff79
MT
6 <ul class="breadcrumb">
7 <li>
8 <a href="/">{{ _("Home") }}</a>
9 <span class="divider">/</span>
10 </li>
11 <li>
12 <a href="/documents">{{ _("Documentation") }}</a>
13 <span class="divider">/</span>
14 </li>
15 <li class="active">
16 <a href="/documents/users">{{ _("User groups") }}</a>
17 </li>
18 </ul>
19
20 <div class="page-header">
21 <h1>{{ _("Documentation") }}: {{ _("User groups") }}</h1>
22 </div>
23
9137135a
MT
24 <h1>{{ _("Users") }}</h1>
25 <p>
26 {{ _("All users can join the Pakfire Build Service and are separated into three groups:") }}
27 </p>
28
29 <h2>{{ _("Developers") }}</h2>
30 <p>
31 {{ _("Developers manage this build service and have access to all parts of it.") }}
32 {{ _("They are responsible to keep the system running and able to push package updates to the repostories.") }}
33 </p>
f6e6ff79 34 <p class="pull-right">
9137135a
MT
35 <a href="/documents/guidelines/developers">{{ _("Guidelines for developers") }}</a>
36 </p>
37
38 <h2>{{ _("Testers") }}</h2>
39 <p>
40 {{ _("Testers are like users but have the right to vote on packages, which is used to figure out the quality of the package.") }}
41 {{ _("Everyone can become a tester after he or she has proven to know the IPFire system very well.") }}
42 {{ _("On these people depends a very huge amount of the quality of the distribution that is made out of the feedback they give.") }}
43 </p>
f6e6ff79 44 <p class="pull-right">
9137135a
MT
45 <a href="/documents/guidelines/testers">{{ _("Guidelines for testers") }}</a>
46 </p>
47
48 <h2>{{ _("Users") }}</h2>
49 <p>
50 {{ _("Everybody can join the Pakfire Build Service by registering an account.") }}
51 {{ _("After a successful activation you are able to leave comments on packages and give feedback to the developers about its status.") }}
52 </p>
53
54 {% if not current_user %}
f6e6ff79 55 <p class="pull-right">
9137135a
MT
56 <a href="/register">{{ _("Register") }}</a>
57 </p>
58 {% end %}
59{% end %}