Document upload and metadata input working

This commit is contained in:
Roberto Rosario
2011-02-03 17:17:04 -04:00
parent fc6545f45a
commit 986dc5d805
77 changed files with 2851 additions and 57 deletions

21
apps/main/templates/about.html Executable file
View File

@@ -0,0 +1,21 @@
{% extends "base.html" %}
{% load i18n %}
{% load project_tags %}
{% block title %} :: {% trans 'About this program' %}{% endblock %}
{% block content %}
<div class="content">
<h3 class="tc">
{% project_name %}<br /><br />
{% trans 'Django based document manager with custom metadata indexing and samba file serving integration' %}<br /><br />
<a href="http://www.github.com/rosarior/mayan/">http://www.github.com/rosarior/mayan/</a><br /><br />
</h3>
</div>
{% endblock %}
{% block footer %}
<div id="footer">
<div class="block">
<p>Copyright &copy; 2011 Roberto Rosario.</p>
</div>
</div>
{% endblock %}