diff --git a/circle/dashboard/templates/dashboard/groupprofile_form.html b/circle/dashboard/templates/dashboard/groupprofile_form.html index 9e4b843..27ce72b 100644 --- a/circle/dashboard/templates/dashboard/groupprofile_form.html +++ b/circle/dashboard/templates/dashboard/groupprofile_form.html @@ -1,11 +1,21 @@ +{% extends "dashboard/base.html" %} {% load crispy_forms_tags %} -<style> - .row { - margin-bottom: 15px; - } -</style> +{% load i18n %} -<form method="POST" action=""> -{% csrf_token %} -{% crispy form %} -</form> +{% block content %} +<div class="body-content"> + <div class="panel panel-default" style="margin-top: 60px;"> + <div class="panel-heading"> + <h3 class="no-margin"> + {% trans "Update group" %} + </h3> + </div> + <div class="panel-body"> + <form method="POST" action=""> + {% csrf_token %} + {% crispy form %} + </form> + </div> + </div> +</div> +{% endblock %}