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.
25 lines
1.1 KiB
25 lines
1.1 KiB
{% extends 'base_index.html' %}
|
|
{% block title %}Часто задаваемые вопросы{% endblock %}
|
|
{% block content %}
|
|
<div class="col">
|
|
<div class="bg-light lter b-b wrapper-md">
|
|
<div class="row">
|
|
<div class="col-lg-12 col-xs-12">
|
|
<h1 class="m-n font-thin h3">
|
|
<a href="/management/faq/" style="margin-left: 10px;margin-right: 20px;"><i class="glyphicon glyphicon-chevron-left"></i> Назад</a>
|
|
<i class="glyphicon glyphicon-education"></i> {{ faq.question }}
|
|
{% if request.user.is_authenticated and request.user.is_admin %}
|
|
<div style="float: right;
|
|
background: #ff1;
|
|
padding: 5px;
|
|
border-radius: 3px;
|
|
border: 1px dotted #ccc;"><a href="http://go.skillbox.ru/admin/management/faq/{{ faq.id }}" target="_blank"><i class="glyphicon glyphicon-pencil"></i> </a></div>
|
|
{% endif %}
|
|
</h1>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="wrapper-md" style=" background: #ffc;">{{ faq.answer|safe }}</div>
|
|
</div>
|
|
{% include 'right_site.html' %}
|
|
{% endblock %} |