add isset check for @vhosts_array

This commit is contained in:
Matthew Saunders Brown 2022-08-31 14:28:20 -07:00
parent a46cc02930
commit 9259d6cd6b

View File

@ -1,31 +1,38 @@
<include href="header.html" /> <include href="header.html" />
<table> <check if="isset(@vhosts_array)">
<tr> <true>
<th>Website</th> <table>
<th>Username</th>
<th>Config</th>
<th>Status</th>
</tr>
<repeat group="{{ @vhosts_array }}" value="{{ @vhost_domain }}">
<tr> <tr>
<td><a href="{{@BASE}}/Websites/{{ @vhost_domain.virtualhost }}">{{ @vhost_domain.virtualhost }}</a></td> <th>Website</th>
<td>{{ @vhost_domain.username }}</td> <th>Username</th>
<td>{{ @vhost_domain.config }}</td> <th>Config</th>
<td>{{ @vhost_domain.status }}</td> <th>Status</th>
</tr> </tr>
</repeat> <repeat group="{{ @vhosts_array }}" value="{{ @vhost_domain }}">
</table> <tr>
<p> <td><a href="{{@BASE}}/Websites/{{ @vhost_domain.virtualhost }}">{{ @vhost_domain.virtualhost }}</a></td>
Select a <b>Website</b> name above for more details and options.<br> <td>{{ @vhost_domain.username }}</td>
<b>Username</b> is the system username that owns the website files.<br> <td>{{ @vhost_domain.config }}</td>
<b>Config</b> is the Apache server Macro Virtualhost config currently set for the site.<br> <td>{{ @vhost_domain.status }}</td>
<b>Status</b> can be used to disable a site without deleting any files or other configs.<br> </tr>
</p>
</repeat>
</table>
<p>
Select a <b>Website</b> name above for more details and options.<br>
<b>Username</b> is the system username that owns the website files.<br>
<b>Config</b> is the Apache server Macro Virtualhost config currently set for the site.<br>
<b>Status</b> can be used to disable a site without deleting any files or other configs.<br>
</p>
</true>
<false>
<p>There are no website domains on this server.</p>
</false>
</check>
<p> <p>
<a href="#Add_New_Website">Add new Website form</a> <a href="#Add_New_Website">Add new Website form</a>
@ -34,14 +41,14 @@ Select a <b>Website</b> name above for more details and options.<br>
<hr> <hr>
<form action="{{@REALM}}" method="POST"> <form action="{{@REALM}}" method="POST">
<h4 id="Add_New_Website">Add New Website</h4> <h4 id="Add_New_Website">Add New Website</h4>
<fieldset> <fieldset>
<legend>Only the domain name is required</legend> <legend>Only the domain name is required</legend>
<label for="domain">Domain Name <small>(Do not include 'www', that will be aliased to the main domain)</small></label> <label for="domain">Domain Name <small>(Do not include 'www', that will be aliased to the main domain)</small></label>
<input id="domain" name="domain" type="text" placeholder="example.com" value="{{ @vhost.domain }}" required> <input id="domain" name="domain" type="text" placeholder="example.com" value="" required>
<label for="username">Username <small>(System username, leave empty for auto-creation)</small></label> <label for="username">Username <small>(System username, leave empty for auto-creation)</small></label>
<input id="username" name="username" type="text" value="{{ @vhost.username }}" required> <input id="username" name="username" type="text" placeholder="examplec" value="" required>
Check to jail user: <input type="checkbox" id="jail" name="jail" value="yes" checked> Check to jail user: <input type="checkbox" id="jail" name="jail" value="yes" checked>