You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

38 lines
1.4 KiB

{% extends 'base_index.html' %}
{% block title %}Комментарий #{{ comment.id }}{% endblock %}
{% block content %}
<div class="col" style="padding-left: 20px; padding-right: 20px;">
<!-- main header -->
<div>
<div class="wrapper-lg" style="padding-bottom: 0; padding-top: 20px;">
<div class="row m-t">
<div class="clear m-b">
<div class="m-b m-t-sm">
<span class="h1 text text-u-c gread_title" style="font-size: 60px;">Комментарий #{{ comment.id }}</span><Br>
<p style="margin-top: 5px;
background: #f1f1f1;
padding: 5px 10px;
border-radius: 5px;">
{{ comment.date }}
<span style="float: right;"><i class="glyphicon glyphicon-user"></i> Автор: <a href="{{ comment.owner_model.get_profile }}">{{ comment.owner_model.get_username }}</a></span>
</p>
</div>
</div>
</div>
</div>
</div>
<div class="wrapper-md">
<div class="row well well-lg">
{{ comment.text|safe }}
</div>
</div>
<!-- / main header -->
</div>
<!-- / main -->
<!-- right col -->
{% include 'right_site.html' %}
<!-- / right col -->
{% endblock %}