Fixed all domains being visible to all users on dashboard.

This commit is contained in:
Ivan Filippov 2016-04-29 10:29:08 -06:00
parent 6999b7ed67
commit 31bf6e10ef
2 changed files with 4 additions and 4 deletions

View file

@ -31,8 +31,8 @@
<!-- small box -->
<div class="small-box bg-aqua">
<div class="inner">
<h3>{{ domains|length }}</h3>
<p>{% if domains|length > 1 %}Domains{% else %}Domain{% endif %}</p>
<h3>{{ domain_count }}</h3>
<p>{% if domain_count > 1 %}Domains{% else %}Domain{% endif %}</p>
</div>
<div class="icon">
<i class="fa fa-book"></i>

View file

@ -136,7 +136,7 @@ def dashboard():
domains = User(id=current_user.id).get_domain()
# stats for dashboard
domains = Domain.query.all()
domain_count = Domain.query.count()
users = User.query.all()
history_number = History.query.count()
history = History.query.limit(4)
@ -146,7 +146,7 @@ def dashboard():
uptime = filter(lambda uptime: uptime['name'] == 'uptime', statistics)[0]['value']
else:
uptime = 0
return render_template('dashboard.html', domains=domains, users=users, history_number=history_number, uptime=uptime, histories=history)
return render_template('dashboard.html', domains=domains, domain_count=domain_count, users=users, history_number=history_number, uptime=uptime, histories=history)
@app.route('/domain/<string:domain_name>', methods=['GET', 'POST'])