fix template
This commit is contained in:
parent
8f45858e0c
commit
76c23bb511
1 changed files with 6 additions and 23 deletions
|
@ -1,27 +1,12 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Учётная запись</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<script src="{{ url_for('static', filename='js/vendor/jquery.js') }}"></script>
|
||||
<script src="{{ url_for('static', filename='vendor/modernizr.js') }}"></script>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/foundation.css') }}" />
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" />
|
||||
</head>
|
||||
<body>
|
||||
{% include "_header.html" %}
|
||||
{% extends "default/_layout.html" %}
|
||||
{% block title %}Биллинг{% endblock %}
|
||||
{% block content %}
|
||||
<div class="row">
|
||||
<div class="large-12 columns">
|
||||
<h2>Личный кабинет</h2>
|
||||
</div>
|
||||
<div class="large-12 columns">
|
||||
<ul class="inline-list">
|
||||
<li><a href="{{ url_for('account.index') }}">Учётная запись</a></li>
|
||||
<li><a href="{{ url_for('account.billing') }}">Биллинг</a></li>
|
||||
<li><a href='{{ url_for('account.settings') }}'>Настройки</a></li>
|
||||
<li><a href='{{ url_for('account.password_update') }}'>Смена пароля</a></li>
|
||||
</ul>
|
||||
{% include "default/id/_menu.html" %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
|
@ -36,9 +21,7 @@
|
|||
</ul>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% include "id/_account_information_edit.html" %}
|
||||
{% include "default/id/_account_information_edit.html" %}
|
||||
</div>
|
||||
</div>
|
||||
{% include "_footer.html" %}
|
||||
</body>
|
||||
</html>
|
||||
{% endblock %}
|
||||
|
|
Loading…
Add table
Reference in a new issue