You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2017/09/25 21:11:03 UTC

[09/12] airavata-php-gateway git commit: AIRAVATA-2500 Fixing layout

AIRAVATA-2500 Fixing layout


Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo
Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/20db67cb
Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/20db67cb
Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/20db67cb

Branch: refs/heads/AIRAVATA-2500
Commit: 20db67cb21d836b6ab4dd42a8bbdb4fb3ee7fbb8
Parents: 277f346
Author: Marcus Christie <ma...@iu.edu>
Authored: Fri Sep 22 13:53:40 2017 -0400
Committer: Marcus Christie <ma...@iu.edu>
Committed: Fri Sep 22 13:53:58 2017 -0400

----------------------------------------------------------------------
 .../auto-provisioned-accounts.blade.php         | 44 ++++++++++----------
 1 file changed, 23 insertions(+), 21 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/20db67cb/app/views/partials/auto-provisioned-accounts.blade.php
----------------------------------------------------------------------
diff --git a/app/views/partials/auto-provisioned-accounts.blade.php b/app/views/partials/auto-provisioned-accounts.blade.php
index 78c9648..5f56aa3 100644
--- a/app/views/partials/auto-provisioned-accounts.blade.php
+++ b/app/views/partials/auto-provisioned-accounts.blade.php
@@ -22,27 +22,29 @@
                 </thead>
                 <tbody>
                     @foreach ($auto_provisioned_accounts as $auto_provisioned_account)
-                        <td>
-                            @if ($auto_provisioned_account["errorMessage"] != null)
-                                <span class="glyphicon glyphicon-warning-sign" style="color: red;"></span> FAILED
-                                <p>
-                                    <small>See <strong>Error Message</strong> for more information and contact Gateway Admin for help.</small>
-                                </p>
-                            @elseif ($auto_provisioned_account["accountExists"] === false)
-                                <span class="glyphicon glyphicon-user" style="color: red;"></span> ACCOUNT MISSING
-                                <p>
-                                    <small>See <strong>Additional Info</strong> for more information on how to create your account on {{{ $auto_provisioned_account["hostname"]}}}.</small>
-                                </p>
-                            @elseif ($auto_provisioned_account["userComputeResourcePreference"] != null)
-                                <span class="glyphicon glyphicon-ok" style="color: green;"></span> OK
-                            @else
-                                <span class="glyphicon glyphicon-question-sign" style="color: grey;"></span> UNKNOWN
-                            @endif
-                        </td>
-                        <td>{{{ $auto_provisioned_account["hostname"] }}}</td>
-                        {{-- Not escaping HTML to allow Gateway Admin to put HTML into additionalInfo field --}}
-                        <td>{{ $auto_provisioned_account["additionalInfo"] }}</td>
-                        <td>{{{ $auto_provisioned_account["errorMessage"] }}}</td>
+                        <tr>
+                            <td>
+                                @if ($auto_provisioned_account["errorMessage"] != null)
+                                    <span class="glyphicon glyphicon-warning-sign" style="color: red;"></span> FAILED
+                                    <p>
+                                        <small>See <strong>Error Message</strong> for more information and contact Gateway Admin for help.</small>
+                                    </p>
+                                @elseif ($auto_provisioned_account["accountExists"] === false)
+                                    <span class="glyphicon glyphicon-user" style="color: red;"></span> ACCOUNT MISSING
+                                    <p>
+                                        <small>See <strong>Additional Info</strong> for more information on how to create your account on {{{ $auto_provisioned_account["hostname"]}}}.</small>
+                                    </p>
+                                @elseif ($auto_provisioned_account["userComputeResourcePreference"] != null)
+                                    <span class="glyphicon glyphicon-ok" style="color: green;"></span> OK
+                                @else
+                                    <span class="glyphicon glyphicon-question-sign" style="color: grey;"></span> UNKNOWN
+                                @endif
+                            </td>
+                            <td>{{{ $auto_provisioned_account["hostname"] }}}</td>
+                            {{-- Not escaping HTML to allow Gateway Admin to put HTML into additionalInfo field --}}
+                            <td>{{ $auto_provisioned_account["additionalInfo"] }}</td>
+                            <td>{{{ $auto_provisioned_account["errorMessage"] }}}</td>
+                        </tr>
                     @endforeach
                 </tbody>
             </table>