Formatting cleanup

This commit is contained in:
Jeremy Stretch 2024-04-19 10:50:00 -04:00
parent 480b36d65e
commit 1efd80954e
3 changed files with 5 additions and 5 deletions

View File

@ -5,10 +5,10 @@
{% block title %}{% trans "Change Password" %}{% endblock %}
{% block content %}
<form action="." method="post" class="form form-horizontal col-md-8 offset-md-2">
<form action="." method="post" class="object-edit">
{% csrf_token %}
<div class="field-group">
<h5 class="text-center">{% trans "Password" %}</h5>
<div class="field-group mb-5">
<h5 class="col-9 offset-3">{% trans "Password" %}</h5>
{% render_field form.old_password %}
{% render_field form.new_password1 %}
{% render_field form.new_password2 %}

View File

@ -66,7 +66,7 @@
<div class="col-md-12">
<div class="card">
<h5 class="card-header text-center">{% trans "Recent Activity" %}</h5>
<div class="card-body table-responsive">
<div class="table-responsive">
{% render_table changelog_table 'inc/table.html' %}
</div>
</div>

View File

@ -16,7 +16,7 @@
<div class="row mb-3">
<div class="col col-md-12">
<div class="card">
<div class="card-body table-responsive">
<div class="table-responsive">
{% render_table table 'inc/table.html' %}
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
</div>