Initial commit

This commit is contained in:
Gregory Soutade
2015-09-24 18:31:03 +02:00
commit 46082b8dcb
34 changed files with 4422 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{% extends "base_user.html" %}
{% block content %}
{% for note in notes %}
<div class="note">
{% if note.category != None %}
<div class="title"><a href="/note/{{ note.id }}">{{ note.title }} [{{ note.category.name }}]</a></div>
{% else %}
<div class="title"><a href="/note/{{ note.id }}">{{ note.title }}</a></div>
{% endif %}
<div class="date">{{ note.modified_date }}</div>
<div class="summary">{{ note.long_summary }}</div>
</div>
{% endfor %}
{% endblock %}