Commit 5ae8521d authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Pre-merge code cleanup

parent 7f3e4ea8
Loading
Loading
Loading
Loading

links.json

deleted100644 → 0
+0 −1712

File deleted.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -280,7 +280,7 @@ def update(config_uuid,channel_name):
            return redirect(url_for('opticalconfig.show_details',config_uuid=config_uuid))
        except Exception as e: # pylint: disable=broad-except
             flash(f'Problem updating the device. {e}', 'danger')  
    return render_template('myabout/update.html', device=response, form=form, submit_text='Update Device',channel_name=channel_name)
    return render_template('device/update.html', device=response, form=form, submit_text='Update Device',channel_name=channel_name)


@opticalconfig.route('refresh_all',methods=['POST','GET'])
+2 −6
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
   {% extends 'base.html' %}

   {% block content %}
       <h1>My Configurations</h1>
       <h1>Optical Configurations</h1>
   
       <div class="row">
          <div class="col">
@@ -33,8 +33,4 @@
            </a>
          </div>
       </div>
       
   
   
   
   {% endblock %}
+1 −1
Original line number Diff line number Diff line
@@ -21,7 +21,7 @@
{% block content %}


<h1>My Configurations</h1>
<h1>Optical Configurations</h1>

<div class="row">
 
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
{% extends 'base.html' %}

{% block content %}
    <h1>My Configurations</h1>
    <h1>Optical Configurations</h1>
    {% if config %}
    <div class="row">
        <div class="col-sm-12">
Loading