mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
[fix] Small fixes and improvments in mailbox quota support
This commit is contained in:
parent
db77ebf401
commit
86d3412941
5 changed files with 9 additions and 9 deletions
|
@ -238,6 +238,6 @@
|
|||
"user_emailforward" : "Mail forward",
|
||||
"user_new_mail": "newmail@mydomain.org",
|
||||
"user_new_forward": "newforward@myforeigndomain.org",
|
||||
"user_quota": "Quota",
|
||||
"quota_description": "Mailbox size quota must be a size with b/k/M/G/T suffix or 0 to disable the quota"
|
||||
"user_mailbox_quota": "Mailbox quota",
|
||||
"mailbox_quota_description": "Mailbox quota must be a size with b/k/M/G/T suffix or 0 to disable the quota."
|
||||
}
|
||||
|
|
|
@ -44,10 +44,10 @@
|
|||
</div>
|
||||
<hr>
|
||||
<div class="form-group">
|
||||
<label for="quota" class="col-sm-3 control-label">{{t 'user_quota'}}</label>
|
||||
<label for="mailbox-quota" class="col-sm-3 control-label">{{t 'user_mailbox_quota'}}</label>
|
||||
<div class="col-sm-9">
|
||||
<input type="ext" id="quota" name="quota" class="form-control" placeholder="10G" required>
|
||||
<div class="help-block">{{t 'quota_description'}}</div>
|
||||
<input type="text" id="mailbox-quota" name="mailbox_quota" class="form-control" placeholder="500M" required>
|
||||
<div class="help-block">{{t 'mailbox_quota_description'}}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
|
|
|
@ -44,9 +44,10 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="username" class="col-sm-3 control-label">{{t 'user_quota'}}</label>
|
||||
<label for="mailbox-quota" class="col-sm-3 control-label">{{t 'user_mailbox_quota'}}</label>
|
||||
<div class="col-sm-9">
|
||||
<input type="text" id="mailbox-quota" name="mailbox-quota" class="form-control" placeholder="{{mailbox-quota}}" value="{{mailbox-quota}}">
|
||||
<input type="text" id="mailbox-quota" name="mailbox_quota" class="form-control" placeholder="{{mailbox-quota}}">
|
||||
<div class="help-block">{{t 'mailbox_quota_description'}}</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><strong>{{t 'user_quota'}}</strong></td>
|
||||
<td><strong>{{t 'user_mailbox_quota'}}</strong></td>
|
||||
|
||||
<td>{{mailbox-quota}}</td>
|
||||
</tr
|
||||
|
|
|
@ -17,7 +17,6 @@
|
|||
<span class="pull-right fa-chevron-right"></span>
|
||||
<h2 class="list-group-item-heading">{{@key}} <small>{{fullname}}</small></h2>
|
||||
<p class="list-group-item-text">{{mail}}</p>
|
||||
<p class="list-group-item-text">{{mailbox-quota}}</p>
|
||||
</a>
|
||||
{{else}}
|
||||
<div class="alert alert-warning">
|
||||
|
|
Loading…
Add table
Reference in a new issue