mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-08 22:36:12 +01:00
bug fix: fetch statging and deploy to production
This commit is contained in:
@@ -4869,7 +4869,7 @@ app.controller('WPsiteHome', function ($scope, $http, $timeout, $compile, $windo
|
||||
var tableSelector = '#stagingListBody';
|
||||
}
|
||||
|
||||
var stagingUrl = 'http://' + value.Domain + value.path;
|
||||
var stagingUrl = 'http://' + value.Domain;
|
||||
var createdDate = new Date().toLocaleDateString();
|
||||
|
||||
var FinalMarkup = '<tr>';
|
||||
@@ -8589,7 +8589,7 @@ app.controller('WPsiteHome', function ($scope, $http, $timeout, $compile, $windo
|
||||
};
|
||||
|
||||
function AddStagings(value, index, array) {
|
||||
var stagingUrl = 'http://' + value.Domain + value.path;
|
||||
var stagingUrl = 'http://' + value.Domain;
|
||||
var createdDate = new Date().toLocaleDateString();
|
||||
|
||||
var FinalMarkup = '<tr>';
|
||||
|
||||
@@ -2289,6 +2289,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div style="margin-top: 1%" ng-hide="installationProgress" class="form-group">
|
||||
<div class="row">
|
||||
<label class="col-sm-2 control-label"></label>
|
||||
<div class="col-sm-7">
|
||||
|
||||
@@ -2318,25 +2319,28 @@
|
||||
<p>{% trans "Could not connect to server. Please refresh this page." %}</p>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div ng-hide="installationProgress" class="form-group center-div">
|
||||
<div class="col-sm-12">
|
||||
<div style="margin-top: 20px; text-align: center;">
|
||||
<button type="button" ng-disabled="goBackDisable"
|
||||
ng-click="goBack()"
|
||||
class="btn btn-default center-div">
|
||||
class="btn btn-default">
|
||||
<i class="fas fa-arrow-left"></i>
|
||||
{% trans "Go Back" %}
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Existing Staging Sites -->
|
||||
<div class="existing-staging-section">
|
||||
<h5>Existing Staging Sites</h5>
|
||||
<div class="existing-staging-section" style="margin-top: 40px; clear: both;">
|
||||
<div class="section-header">
|
||||
<h4>Existing Staging Sites</h4>
|
||||
<p class="text-muted">Manage your staging environments</p>
|
||||
</div>
|
||||
<div class="form-card">
|
||||
<div class="table-responsive">
|
||||
<table class="table table-hover staging-table">
|
||||
<table class="table table-hover staging-table mb-0">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Name</th>
|
||||
@@ -2351,6 +2355,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="tab-pane" id="tab5">
|
||||
|
||||
Reference in New Issue
Block a user