blogdetail layout tuning, other mini fixes

This commit is contained in:
ottona 2018-03-04 15:20:20 +01:00
parent 83b28f4475
commit 408a8275c4
5 changed files with 13 additions and 6 deletions

View File

@ -24,15 +24,16 @@
<input type="submit" value="Submit" />
</form>
{% endif %}
<br/><br/>
{% for comment in blogentry.blogcomment_set.all %}
{% if comment.user %}
<h3>{{ comment.user.username }} says:</h3>
<big><b>{{ comment.user.username }}</b> says:</big>
{% else %}
<h3>{{ comment.guestname }} says:</h3>
<big>{{ comment.guestname }} says:</big>
{% endif %}
{{ comment.body|linebreaks }}<br/>
<small>{{ comment.date }}</small>
<br/><small>{{ comment.date }}</small><br/>
{{ comment.body|linebreaks }}
<hr width="25%" align="left"/>
{% endfor %}
{% if false %}
<table class="forumentry">

Binary file not shown.

View File

@ -20,7 +20,7 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'c=62ybp2ppak&@1r+x(cc)u+iw9%ljsq8-w10h9a14##)51yh3'
SECRET_KEY = 'somesecretkey'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

View File

@ -76,3 +76,7 @@ div#footer{
display: table;
clear: both;
}
textarea {
width: 100%;
}

View File

@ -41,7 +41,9 @@ Blog Post Categories:<br/>
Recent Posts:<br/>
<ul>
{% for post in blogentries %}
{% if post.published %}
<li> <a href="{% url 'detail' post.id %}">{{ post }}</a> </li>
{% endif %}
{% endfor %}
</ul>
</div>