summaryrefslogtreecommitdiffstats
path: root/templates/threads
diff options
context:
space:
mode:
authorAamir Khan <syst3m.w0rm@gmail.com>2012-06-25 16:17:10 -0400
committerAamir Khan <syst3m.w0rm@gmail.com>2012-06-25 16:17:10 -0400
commitd830b1ab3d95f8598de98b2a97cfed7ed19c4175 (patch)
treeb110afb4bacc67cdbdb1cab6cbdc1512f20f99b9 /templates/threads
parentea19e904c28e45cbfb8084c4a3ede4dfb55606e1 (diff)
Code Formatting
Diffstat (limited to 'templates/threads')
-rw-r--r--templates/threads/add_tag_form.html12
-rw-r--r--templates/threads/right_col.html100
2 files changed, 63 insertions, 49 deletions
diff --git a/templates/threads/add_tag_form.html b/templates/threads/add_tag_form.html
index da1014d..65f6577 100644
--- a/templates/threads/add_tag_form.html
+++ b/templates/threads/add_tag_form.html
@@ -3,9 +3,11 @@
{% block header %} {% endblock %}
{% block content %}
- <form action="/addtag/{{list_address}}/{{email_id}}/" method="post">
- {% csrf_token %}
- {{ addtag_form }}
- <button type="submit">Add</button>
- </form>
+<form action="/addtag/{{list_address}}/{{email_id}}/" method="post">
+ {% csrf_token %}
+ {{ addtag_form }}
+ <button type="submit">
+ Add
+ </button>
+</form>
{% endblock %}
diff --git a/templates/threads/right_col.html b/templates/threads/right_col.html
index 200e47a..9a1e448 100644
--- a/templates/threads/right_col.html
+++ b/templates/threads/right_col.html
@@ -1,48 +1,60 @@
{% load gravatar %}
<!-- right column -->
- <section id="thread_overview_info">
- <!-- Start dates -->
- <div id="thread_date_info">
- <div class="days_num inline-block">21</div>
- <div class="days_text inline-block">
- days<br /> inactive
- </div>
- <div id="days_old" class="days_num inline-block">24</div>
- <div class="days_text inline-block">
- days <br /> old
- </div>
- </div>
- <p id="add_to_fav">
- <a href="#AddFav" class="notsaved">Add to favorite discussions</a>
- </p>
- <!-- End dates -->
- <hr id="grey"/>
- <div id="tags">
- <span id="tag_title">tags </span>({{tags|length}})
- <ul class="inline">
- {% for tag in tags %}
- <li> {{ tag }} |</li>
- {% endfor %}
- </ul>
- </div>
- <div id="add_tag">
- <form action="/addtag/{{list_address}}/{{first_mail.message_id}}/" method="post">
- {% csrf_token %}
- {{ addtag_form.as_p }}
- <button type="submit">Add a tag</button>
- </form>
- </div>
- <div id="participants">
- <span id="participants_title"> participants </span>({{participants|length}})
- <ul>
- {% for key,value in participants.items %}
- <li>
- {% gravatar_img_for_email value.email 20%}
- {{key}}
- </li>
- {% endfor %}
- </ul>
- </div>
- </section>
+<section id="thread_overview_info">
+ <!-- Start dates -->
+ <div id="thread_date_info">
+ <div class="days_num inline-block">
+ 21
+ </div>
+ <div class="days_text inline-block">
+ days
+ <br />
+ inactive
+ </div>
+ <div id="days_old" class="days_num inline-block">
+ 24
+ </div>
+ <div class="days_text inline-block">
+ days
+ <br />
+ old
+ </div>
+ </div>
+ <p id="add_to_fav">
+ <a href="#AddFav" class="notsaved">Add to favorite discussions</a>
+ </p>
+ <!-- End dates -->
+ <hr id="grey"/>
+ <div id="tags">
+ <span id="tag_title">tags </span>({{tags|length}})
+ <ul class="inline">
+ {% for tag in tags %}
+ <li>
+ {{ tag }} |
+ </li>
+ {% endfor %}
+ </ul>
+ </div>
+ <div id="add_tag">
+ <form action="/addtag/{{list_address}}/{{first_mail.message_id}}/" method="post">
+ {% csrf_token %}
+ {{ addtag_form.as_p }}
+ <button type="submit">
+ Add a tag
+ </button>
+ </form>
+ </div>
+ <div id="participants">
+ <span id="participants_title"> participants </span>({{participants|length}})
+ <ul>
+ {% for key,value in participants.items %}
+ <li>
+ {% gravatar_img_for_email value.email 20%}
+ {{key}}
+ </li>
+ {% endfor %}
+ </ul>
+ </div>
+</section>