Commit 8a67c28b authored by Stephanie Tullao's avatar Stephanie Tullao

Modified forum details' html and css

parent 4b6cb242
......@@ -38,7 +38,7 @@ h2 {
color: rgb(94, 214, 218);
}
h5 {
li {
font-size: 16px;
font-weight: 100;
}
......
......@@ -10,13 +10,13 @@
{% block content %}
<body>
{% if post.id == 1 %}
<img src="{% static 'forum/img/GitBranch.png' %}" alt="view branch" class="center">
<img src="{% static 'forum/img/GitBranchCreate.png' %}" alt="create branch" class="center">
{% endif %}
{% if post.id == 2 %}
<img src="{% static 'forum/img/GitCheckout.png' %}" alt="switch branch" class="center">
{% endif %}
{% if post.id == 3 %}
<img src="{% static 'forum/img/GitBranchCreate.png' %}" alt="create branch" class="center">
<img src="{% static 'forum/img/GitBranch.png' %}" alt="view branch" class="center">
{% endif %}
<h1>{{ post.post_title }}</h1>
<h3>
......@@ -29,9 +29,9 @@
<div class="replies">
<h2>Replies:</h2>
{% for reply in reply_list %}
<h5>
<li>
{{ reply.author.first_name }} {{ reply.author.last_name }}, {{ reply.pub_date|date:'d/m/Y' }} :
</h5>
</li>
<p>{{ reply.reply_body }}</p>
{% endfor %}
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment