up
This commit is contained in:
parent
15c1a81831
commit
60241f9ea8
4 changed files with 1 additions and 27 deletions
|
@ -1,11 +0,0 @@
|
|||
{% extends "default/_layout.html" %}
|
||||
|
||||
{% block title %}База знаний{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
{% filter markdown %}{{ kb_markdown }}{% endfilter %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
|
@ -29,7 +29,7 @@ def index_post():
|
|||
email = ControllerMessagesEmail()
|
||||
# email.send(title=subject, to=ticket_email, lead=lead, message=message, callout=callout)
|
||||
email.send(
|
||||
title=ticket_subject, to=g.settings['contacts.email'], lead=lead, message=ticket_message, callout=callout)
|
||||
title=ticket_subject, to=g.settings.get('contacts.email'), lead=lead, message=ticket_message, callout=callout)
|
||||
return redirect(url_for('support.thank'))
|
||||
|
||||
|
||||
|
|
13
kb/README.md
13
kb/README.md
|
@ -1,13 +0,0 @@
|
|||
# База знаний
|
||||
|
||||
## Обзие вопросы
|
||||
|
||||
- Как создать контейнер
|
||||
- Как оплатить
|
||||
-
|
||||
|
||||
## API
|
||||
|
||||
- Описание
|
||||
- Запросы
|
||||
- Коды ошибок
|
2
setup.py
2
setup.py
|
@ -79,7 +79,6 @@ setup(
|
|||
'templates/default/documents/*.html',
|
||||
'templates/default/homepage/*.html',
|
||||
'templates/default/id/*.html',
|
||||
'templates/default/kb/*.html',
|
||||
'templates/default/payment/*.html',
|
||||
'templates/default/payment/robokassa/*.html',
|
||||
'templates/default/support/*.html',
|
||||
|
@ -119,7 +118,6 @@ setup(
|
|||
'templates/administrator/settings/messages/*.html',
|
||||
'templates/administrator/tasks/*.html',
|
||||
'templates/administrator/users/*.html',
|
||||
# 'templates/administrator/payments/*.html',
|
||||
'templates/administrator/wiki/*.html',
|
||||
'templates/administrator/wiki/article/*.html',
|
||||
'templates/administrator/wiki/category/*.html',
|
||||
|
|
Loading…
Add table
Reference in a new issue