1
0
mirror of https://github.com/cydrobolt/polr.git synced 2024-11-09 19:52:28 +01:00

Show 'unlimited' if no API quota

This commit is contained in:
Chaoyi Zha 2016-07-22 13:52:21 -07:00
parent daea29bca5
commit 59f6cb6f01

View File

@ -88,7 +88,13 @@
<h4>API Quota: </h4>
<h2 class='api-quota'><code>{{$api_quota}}</code></h2>
<h2 class='api-quota'>
@if ($api_quota == -1)
unlimited
@else
<code>{{$api_quota}}</code>
@endif
</h2>
<span> requests per minute</span>
</div>
@endif