mirror of
https://github.com/retspen/webvirtcloud
synced 2024-12-24 15:15:22 +00:00
Moved admin/common/form.html to project templates
This commit is contained in:
parent
d9785e397b
commit
1a3cc36ada
3 changed files with 7 additions and 3 deletions
|
@ -33,7 +33,7 @@ def group_create(request):
|
|||
|
||||
return render(
|
||||
request,
|
||||
'admin/common/form.html',
|
||||
'common/form.html',
|
||||
{
|
||||
'form': form,
|
||||
'title': _('Create Group'),
|
||||
|
@ -51,7 +51,7 @@ def group_update(request, pk):
|
|||
|
||||
return render(
|
||||
request,
|
||||
'admin/common/form.html',
|
||||
'common/form.html',
|
||||
{
|
||||
'form': form,
|
||||
'title': _('Update Group'),
|
||||
|
|
|
@ -169,3 +169,7 @@ p {
|
|||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* remove ugly dotted outline on tabs */
|
||||
a {
|
||||
outline: 0;
|
||||
}
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{% load icons %}
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}{% trans "User" %}{% endblock %}
|
||||
{% block title %}{{ title }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="row">
|
Loading…
Reference in a new issue