37 lines
No EOL
1.5 KiB
HTML
Executable file
37 lines
No EOL
1.5 KiB
HTML
Executable file
{% extends 'layout.html' %}
|
|
{% load bbcode_tags %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h2>{{ post.title }}</h2>
|
|
{% if post.parent %}
|
|
{% if subposts %}
|
|
<div class="postmenu">
|
|
<div class="header">Menu</div>
|
|
<div class="body">
|
|
<ul>
|
|
{% for subpost in subposts %}
|
|
<li><a href="{% url 'view_post' subpost.slug %}">{{ subpost.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
{% else %}
|
|
{% if post.post_parent %}
|
|
<ul class="breadcrumbs">
|
|
<li><a href="{% url 'view_post' post.post_parent.slug %}">{{ post.post_parent.title }}</a> »</li>
|
|
<li>{{ post.title }}</li>
|
|
</ul>
|
|
{% endif %}
|
|
{% endif %}
|
|
{% if post.type == 'news' %}
|
|
<div style="float:left;margin:5px"><img src="/media/{{ post.image }}" style="max-width: 200px;" alt="{{ post.title }}"></div>
|
|
{% endif %}
|
|
<p>{{ post.content|bbcode|safe|linebreaksbr }}</p>
|
|
{% if post.type == 'news' %}
|
|
<p style="text-align: center;"><a href="/{{ post.forum_link }}" class="btn btn-default">Participer au sujet sur le forum</a></p>
|
|
{% endif %}
|
|
<small>Article créer le {{ post.created }} par <a href="{% url 'profile' post.author.id %}" class="{{ request.user.username_decoration }}">{{ post.author.username }}</a></small>
|
|
</div>
|
|
{% endblock %} |