enable mailbox creation
- add managemails.urls to gnuviechadmin.urls - add link to create_mailbox to customerhostingpackage_detail.html template - document feature in changelog
This commit is contained in:
parent
449af174ec
commit
d1119331d8
3 changed files with 3 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
* :feature:`-` implement creation of new mailboxes for hosting packages
|
||||||
* :support:`-` move common form code to new module gvawebcore.forms
|
* :support:`-` move common form code to new module gvawebcore.forms
|
||||||
* :feature:`-` make it possible to assign domains to a customer
|
* :feature:`-` make it possible to assign domains to a customer
|
||||||
* :feature:`-` add hosting packages list for staff users
|
* :feature:`-` add hosting packages list for staff users
|
||||||
|
|
|
@ -12,6 +12,7 @@ urlpatterns = patterns(
|
||||||
url(r'^accounts/', include('allauth.urls')),
|
url(r'^accounts/', include('allauth.urls')),
|
||||||
url(r'^domains/', include('domains.urls')),
|
url(r'^domains/', include('domains.urls')),
|
||||||
url(r'^hosting/', include('hostingpackages.urls')),
|
url(r'^hosting/', include('hostingpackages.urls')),
|
||||||
|
url(r'^mail/', include('managemails.urls')),
|
||||||
url(r'^osuser/', include('osusers.urls')),
|
url(r'^osuser/', include('osusers.urls')),
|
||||||
url(r'^admin/', include(admin.site.urls)),
|
url(r'^admin/', include(admin.site.urls)),
|
||||||
)
|
)
|
||||||
|
|
|
@ -140,7 +140,7 @@
|
||||||
<p class="panel-body text-info">{% trans "There are no mailboxes assigned to this hosting package yet." %}</p>
|
<p class="panel-body text-info">{% trans "There are no mailboxes assigned to this hosting package yet." %}</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if hostingpackage.may_add_mailbox %}
|
{% if hostingpackage.may_add_mailbox %}
|
||||||
<p class="panel-body"><a href="#" class="btn btn-primary">{% trans "Add mailbox" %}</a></p>
|
<p class="panel-body"><a href="{% url 'create_mailbox' package=hostingpackage.id %}" class="btn btn-primary">{% trans "Add mailbox" %}</a></p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue