mirror of
https://github.com/retspen/webvirtcloud
synced 2024-11-01 12:04:15 +00:00
21 lines
No EOL
610 B
HTML
21 lines
No EOL
610 B
HTML
{% extends "base.html" %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Accounts" %}{% endblock %}
|
|
{% block content %}
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
|
|
{% include 'sidebar.html' %}
|
|
|
|
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
|
|
<button type="button" class="btn btn-success pull-right"><span class="glyphicon glyphicon-plus" aria-hidden="true"></span></button>
|
|
<h1 class="page-header">{{ user.username }}</h1>
|
|
|
|
{% include 'errors_block.html' %}
|
|
|
|
{{ user }}
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |