-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
96 lines (82 loc) · 4.35 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="PonyTracker is an open source and easy-to-use github-like issue tracker realised with the Django web framework and released under CeCILL-C.">
<meta name="author" content="Élie Bouttier">
<meta name="keywords" content="PonyTracker, issue tracker, issue tracking system, trouble ticket system, support ticket, requeste managment, incident ticket system, bug tracking system" />
<link rel="icon" href="favicon.ico">
<title>PonyTracker - the open source and easy-to-use issue tracker</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<div class="header clearfix">
<nav>
<ul class="nav nav-pills pull-right">
<li role="presentation" class="active"><a href="/">Home</a></li>
<!--<li role="presentation"><a href="/features.html">Features</a></li>-->
<li role="presentation"><a href="/screenshots.html">Screenshots</a></li>
<li role="presentation"><a href="https://ponytracker.readthedocs.io/">Documentation</a></li>
<li role="presentation"><a href="https://demo.ponytracker.eu.org">Demo</a></li>
</ul>
</nav>
<h3><strong>PonyTracker</strong></h3>
</div>
<div class="jumbotron">
<p><a href="img/ponytracker.hd.png"><img src="img/ponytracker.sd.png" /></a></p>
<p class="lead"><strong>PonyTracker</strong> is an open source and easy-to-use issue tracker realised in <a href="https://www.python.org/">Python</a> with the <a href="https://www.djangoproject.com/">Django web framework</a> and released under <a href="http://www.cecill.info/licences/Licence_CeCILL-C_V1-en.html">CeCILL-C</a>.</p>
<p><a class="btn btn-lg btn-success" href="https://ponytracker.readthedocs.org/" role="button">Get started with PonyTracker</a></p>
</div>
<div class="row marketing">
<div class="col-lg-12">
<h4>Main features:</h4>
<ul>
<li>Issues classified in project</li>
<li>Issues filterable by labels/milestones/author</li>
<li>Markdown comments</li>
<li>Global or per-project based permissions</li>
<li>Per user/group/team permissions</li>
<li>E-mails notifications</li>
<li>Very well suited for use with LDAP directory</li>
</ul>
<h4>Planned features:</h4>
<ul>
<li>REST API</li>
<li>RSS/Atom feeds</li>
<li>Jabber notifications</li>
<li>Advanced search</li>
<li>Sorting criteria</li>
<li>Authentication with social media</li>
</ul>
</div>
<!--<p class="text-center"><a class="btn btn-primary" href="/features.html" role="button">See all features</a></p>-->
</div>
</div> <!-- /container -->
<a href="https://github.com/ponytracker/ponytracker"><img style="position: absolute; top: 0; right: 0; border: 0;" src="img/forkme.png" alt="Fork me on GitHub" data-canonical-src="img/forkme.png"></a>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u="//cannelle.eu.org/piwik/";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 5]);
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
})();
</script>
<noscript><p><img src="//cannelle.eu.org/piwik/piwik.php?idsite=5" style="border:0;" alt="" /></p></noscript>
<!-- End Piwik Code -->
</body>
</html>