diff options
author | Primal Pappachan | 2012-04-02 14:02:38 +0530 |
---|---|---|
committer | Primal Pappachan | 2012-04-02 14:02:38 +0530 |
commit | 22fb3196ab00aa2faad2bc53ee91bff9f4bee94f (patch) | |
tree | 9bdbebb9f8e29c1b504ec5fa05fcac4bfc3730dd | |
parent | 0638ac6191dedd4b8945578ebad0988105f45145 (diff) | |
download | aloha-22fb3196ab00aa2faad2bc53ee91bff9f4bee94f.tar.gz aloha-22fb3196ab00aa2faad2bc53ee91bff9f4bee94f.tar.bz2 aloha-22fb3196ab00aa2faad2bc53ee91bff9f4bee94f.zip |
Added about page
-rw-r--r-- | aloha/template/about.html | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/aloha/template/about.html b/aloha/template/about.html new file mode 100644 index 0000000..40bb850 --- /dev/null +++ b/aloha/template/about.html @@ -0,0 +1,26 @@ +{% extends "base.html" %} + +{% block title %} Our Platform {% endblock %} + +{% block content %} +<h2> The software powering our application are</h2> <br/> +<h2>Parts of our platform relies on the following tools and source code.</h2> +<hr /> + +<ul> +<li>Python 2.7 - Python Software Foundation Licensed under PSF License. </li> +<li>Django 1.3 - Django Project Licensed under Open source, BSD License.</li> +<li>Twitter Bootstrap CSS Tools - Twitter, Inc. Licensed under the Apache License v2.0.</li> +<li>jQuery Javascript Library - John Resig. Licensed under the MIT License.</li> +<li>ReportLab - ReportLab, Inc. Licensed under the BSD License.</li> +<li>django-crispy-forms - Miguel Araujo, https://github.com/maraujop/django-crispy-forms </li> +</ul> + +We also use the following icon-sets +<ul> +<li></li> +</ul> + + +{% endblock content %} + |