Skip to content

Commit

Permalink
bug fix: menu items
Browse files Browse the repository at this point in the history
  • Loading branch information
usmannasir committed Jan 24, 2024
1 parent e3b691a commit 74db3b9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
34 changes: 17 additions & 17 deletions baseTemplate/templates/baseTemplate/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,7 @@
<a href="#" title="{% trans 'Dockersite' %}">
<div class="glyph-icon icon-globe" title="{% trans 'Docker Apps' %}"></div>
<span>{% trans "Docker Apps" %}</span>
<span class="bs-label badge-yellow">{% trans "Beta" %}</span>
</a>
<div class="sidebar-submenu">

Expand Down Expand Up @@ -848,28 +849,27 @@
</div><!-- .sidebar-submenu -->
</li>

<li id="sidebar-menu-item-containerization">
<a href="#" title="{% trans 'Containerization' %}">
<i class="glyph-icon icon-linecons-fire"></i>
<span>{% trans "Containerization" %}</span>
<span class="bs-label badge-yellow">{% trans "NEW" %}</span>
</a>
<div class="sidebar-submenu">

<ul>
<li><a href="{% url 'cHome' %}"
title="{% trans 'Create Website Limits' %}"><span>{% trans "Create Limits" %}</span></a>
</li>
</ul>

</div><!-- .sidebar-submenu -->
</li>
{# <li id="sidebar-menu-item-containerization">#}
{# <a href="#" title="{% trans 'Containerization' %}">#}
{# <i class="glyph-icon icon-linecons-fire"></i>#}
{# <span>{% trans "Containerization" %}</span>#}
{# <span class="bs-label badge-yellow">{% trans "NEW" %}</span>#}
{# </a>#}
{# <div class="sidebar-submenu">#}
{##}
{# <ul>#}
{# <li><a href="{% url 'cHome' %}"#}
{# title="{% trans 'Create Website Limits' %}"><span>{% trans "Create Limits" %}</span></a>#}
{# </li>#}
{# </ul>#}
{##}
{# </div><!-- .sidebar-submenu -->#}
{# </li>#}

<li id="sidebar-menu-item-docker">
<a href="#" title="{% trans 'Docker' %}">
<i class="glyph-icon icon-cogs"></i>
<span>{% trans "Docker Manager" %}</span>
<span class="bs-label badge-yellow">{% trans "NEW" %}</span>
</a>
<div class="sidebar-submenu">

Expand Down
3 changes: 2 additions & 1 deletion plogical/applicationInstaller.py
Original file line number Diff line number Diff line change
Expand Up @@ -1811,7 +1811,8 @@ def wordpressInstallNew(self):
reutrntempath = coreResult1['tempStatusPath']
while (1):
lastLine = open(reutrntempath, 'r').read()
logging.writeToFile("Error web creating lastline ....... %s" % lastLine)
if os.path.exists(ProcessUtilities.debugPath):
logging.writeToFile("Info web creating lastline ....... %s" % lastLine)
if lastLine.find('[200]') > -1:
break
elif lastLine.find('[404]') > -1:
Expand Down

0 comments on commit 74db3b9

Please sign in to comment.