This commit is contained in:
sanj 2010-08-02 04:08:56 +05:30
parent 8bf4c2d2f0
commit 1995ebcd74

View File

@ -85,6 +85,14 @@ $(document).ready(function() {
color: #363636; color: #363636;
} }
ul {
padding-top: 0px;
}
h3 {
padding: 0px;
margin-bottom: 4px;
}
</style> </style>
{% endblock %} {% endblock %}
@ -93,7 +101,7 @@ $(document).ready(function() {
<h3>Past Issues:</h3> <h3>Past Issues:</h3>
<ul class="newsletterList"> <ul class="newsletterList">
{% for p in past_issues %} {% for p in past_issues %}
<a href="?issue_id={{p.id}}">{{ p.title }}</a> <li><a href="?issue_id={{p.id}}">{{ p.title }}</a></li>
{% endfor %} {% endfor %}
</ul> </ul>
<div id="subscribe"> <div id="subscribe">
@ -109,6 +117,7 @@ $(document).ready(function() {
{{ current_issue.html }} {{ current_issue.html }}
{% endautoescape %} {% endautoescape %}
<div id="commentWrapper"> <div id="commentWrapper">
<h3>Comments and Feedback</h3>
<a name="comments"></a> <a name="comments"></a>
<form id="commentForm" action=""> <form id="commentForm" action="">
<table id="commentTable"> <table id="commentTable">
@ -121,7 +130,7 @@ $(document).ready(function() {
<td><input name="commentEmail" id="commentEmail" /></td> <td><input name="commentEmail" id="commentEmail" /></td>
</tr> </tr>
<tr> <tr>
<td class="label">Feedback:</td> <td class="label">Comment:</td>
<td><textarea name="commentComment" id="commentComment"></textarea></td> <td><textarea name="commentComment" id="commentComment"></textarea></td>
</tr> </tr>
<tr> <tr>