mirror of
				https://github.com/retspen/webvirtcloud
				synced 2025-07-31 12:41:08 +00:00 
			
		
		
		
	Add XML Config to collapsible accordion
This commit is contained in:
		
							parent
							
								
									8d2b3e3024
								
							
						
					
					
						commit
						573df2acaa
					
				
					 2 changed files with 140 additions and 132 deletions
				
			
		
							
								
								
									
										33
									
								
								nwfilters/templates/add_nwf_rule.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										33
									
								
								nwfilters/templates/add_nwf_rule.html
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,33 @@
 | 
			
		|||
{% load i18n %}
 | 
			
		||||
{% if request.user.is_superuser %}
 | 
			
		||||
        <a href="#AddNWFilterRule" type="button" class="btn btn-success pull-right" data-toggle="modal">
 | 
			
		||||
            <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
 | 
			
		||||
        </a>
 | 
			
		||||
 | 
			
		||||
    <!-- Modal Secret -->
 | 
			
		||||
    <div class="modal fade" id="AddNWFilterRule" tabindex="-1" role="dialog" aria-labelledby="AddNWFilterRule" aria-hidden="true">
 | 
			
		||||
        <div class="modal-dialog">
 | 
			
		||||
            <div class="modal-content">
 | 
			
		||||
                <div class="modal-header">
 | 
			
		||||
                    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
 | 
			
		||||
                    <h4 class="modal-title">{% trans "Add New NWFilter Rule" %}</h4>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="modal-body">
 | 
			
		||||
                    <form class="form-horizontal" method="post" role="form">{% csrf_token %}
 | 
			
		||||
                         <div class="form-group">
 | 
			
		||||
                            <div class="col-xs-12" id="xmlheight">
 | 
			
		||||
                                <input type="hidden" name="nwfilterrule_xml"/>
 | 
			
		||||
                                <textarea id="rule_editor"></textarea>
 | 
			
		||||
                            </div>
 | 
			
		||||
                            <p><small><em>{% trans 'If there is a rule which has same attributes it replaces that rule' %}...</em></small></p>
 | 
			
		||||
                         </div>
 | 
			
		||||
                        <div class="modal-footer">
 | 
			
		||||
                            <button type="button" class="btn btn-default" data-dismiss="modal">{% trans "Close" %}</button>
 | 
			
		||||
                            <button type="submit" class="btn btn-primary" name="add_nwfilter_rule">{% trans "Add" %}</button>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </form>
 | 
			
		||||
                </div> <!-- /.modal-content -->
 | 
			
		||||
            </div>
 | 
			
		||||
        </div> <!-- /.modal-dialog -->
 | 
			
		||||
    </div><!-- /.modal -->
 | 
			
		||||
{% endif %}
 | 
			
		||||
| 
						 | 
				
			
			@ -43,15 +43,24 @@
 | 
			
		|||
            <p>{% trans "UUID:" %}</p>
 | 
			
		||||
            <p>{% trans "Name:" %}</p>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
        <div class="col-xs-6 col-sm-8">
 | 
			
		||||
            <p>{{ uuid }}</p>
 | 
			
		||||
            <p>{{ name }}</p>
 | 
			
		||||
        </div>
 | 
			
		||||
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="row">
 | 
			
		||||
         <p><strong>{% trans "XML:" %}</strong></p>
 | 
			
		||||
        <h3 class="page-header"></h3>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="panel-group" id="accordion">
 | 
			
		||||
       <div class="panel panel-default">
 | 
			
		||||
            <div class="panel-heading">
 | 
			
		||||
                <a data-toggle="collapse" data-parent="#accordion" href="#collapseOne">
 | 
			
		||||
                    {% trans 'XML' %}
 | 
			
		||||
                </a>
 | 
			
		||||
            </div>
 | 
			
		||||
            <div id="collapseOne" class="panel-collapse collapse">
 | 
			
		||||
                <div class="panel-body">
 | 
			
		||||
 | 
			
		||||
                  <form class="form-inline" method="post" role="form">{% csrf_token %}
 | 
			
		||||
                     <div class="col-xs-12" id="xmlheight">
 | 
			
		||||
                        <input type="hidden" name="edit_xml"/>
 | 
			
		||||
| 
						 | 
				
			
			@ -62,34 +71,35 @@
 | 
			
		|||
                        </button>
 | 
			
		||||
                    </form>
 | 
			
		||||
                </div>
 | 
			
		||||
            </div>
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="row">
 | 
			
		||||
        <h3 class="page-header">{% trans "Filter References" %}</h3>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="row">
 | 
			
		||||
        <p><strong>{% trans "Filter References:" %}</strong></p>
 | 
			
		||||
        <form class="form-inline pull-right" method="post" role="form">{% csrf_token %}
 | 
			
		||||
            <div class="form-group">
 | 
			
		||||
                <label>{% trans "Filter:" %}</label>
 | 
			
		||||
                <label>{% trans "Filter" %}:</label>
 | 
			
		||||
                <select id="nwfilter_select" name="nwfilters_select" class="form-control">
 | 
			
		||||
                    <option value="" selected>None</option>
 | 
			
		||||
                    <option value="" selected>{% trans 'None' %}</option>
 | 
			
		||||
                    {% for nwf in nwfilters_all %}
 | 
			
		||||
                        <option value="{{ nwf.name }}">{{ nwf.name }}</option>
 | 
			
		||||
                    {% endfor %}
 | 
			
		||||
                </select>
 | 
			
		||||
 | 
			
		||||
                <button type="submit" class="btn btn-success pull-right" name="add_nwfilter_ref">
 | 
			
		||||
                    <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
 | 
			
		||||
                </button>
 | 
			
		||||
            </div>
 | 
			
		||||
        </form>
 | 
			
		||||
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="row">
 | 
			
		||||
 | 
			
		||||
    <div class="table-responsive">
 | 
			
		||||
        <table class="table table-striped">
 | 
			
		||||
            <thead>
 | 
			
		||||
                    <tr>
 | 
			
		||||
                <th style="width: 45px;">#</th>
 | 
			
		||||
                <th>{% trans "Reference" %}</th>
 | 
			
		||||
                        <th colspan="3">{% trans "Action" %}</th>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                <th>{% trans "Action" %}</th>
 | 
			
		||||
            </thead>
 | 
			
		||||
            <tbody>
 | 
			
		||||
            {% for ref in refs %}
 | 
			
		||||
| 
						 | 
				
			
			@ -109,53 +119,21 @@
 | 
			
		|||
            </tbody>
 | 
			
		||||
        </table>
 | 
			
		||||
    </div>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="row">
 | 
			
		||||
        <p><strong>{% trans "Rules:" %}</strong></p>
 | 
			
		||||
        <a href="#AddNWFilterRule" type="button" class="btn btn-success pull-right" data-toggle="modal">
 | 
			
		||||
            <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
 | 
			
		||||
        </a>
 | 
			
		||||
 | 
			
		||||
    <!-- Modal Secret -->
 | 
			
		||||
    <div class="modal fade" id="AddNWFilterRule" tabindex="-1" role="dialog" aria-labelledby="AddNWFilterRule" aria-hidden="true">
 | 
			
		||||
        <div class="modal-dialog">
 | 
			
		||||
            <div class="modal-content">
 | 
			
		||||
                <div class="modal-header">
 | 
			
		||||
                    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
 | 
			
		||||
                    <h4 class="modal-title">{% trans "Add New NWFilter Rule" %}</h4>
 | 
			
		||||
                </div>
 | 
			
		||||
                <div class="modal-body">
 | 
			
		||||
                    <form class="form-horizontal" method="post" role="form">{% csrf_token %}
 | 
			
		||||
                         <div class="form-group">
 | 
			
		||||
                            <div class="col-xs-12" id="xmlheight">
 | 
			
		||||
                                <input type="hidden" name="nwfilterrule_xml"/>
 | 
			
		||||
                                <textarea id="rule_editor"></textarea>
 | 
			
		||||
                            </div>
 | 
			
		||||
                             <p><small><em>If there is a rule which has same attributes it replaces that rule...</em></small></p>
 | 
			
		||||
                         </div>
 | 
			
		||||
                        <div class="modal-footer">
 | 
			
		||||
                            <button type="button" class="btn btn-default" data-dismiss="modal">{% trans "Close" %}</button>
 | 
			
		||||
                            <button type="submit" class="btn btn-primary" name="add_nwfilter_rule">{% trans "Add" %}</button>
 | 
			
		||||
                        </div>
 | 
			
		||||
                    </form>
 | 
			
		||||
                </div> <!-- /.modal-content -->
 | 
			
		||||
            </div>
 | 
			
		||||
        </div> <!-- /.modal-dialog -->
 | 
			
		||||
    </div><!-- /.modal -->
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="row">
 | 
			
		||||
        {% include 'add_nwf_rule.html' %}
 | 
			
		||||
        <h3 class="page-header">{% trans "Rules" %}</h3>
 | 
			
		||||
    </div>
 | 
			
		||||
    <div class="table-responsive">
 | 
			
		||||
        <table class="table table-striped">
 | 
			
		||||
            <thead>
 | 
			
		||||
                    <tr>
 | 
			
		||||
                <th style="width: 45px;">{% trans "Rule" %}</th>
 | 
			
		||||
                <th>{% trans "ActionType" %}</th>
 | 
			
		||||
                <th>{% trans "Direction" %}</th>
 | 
			
		||||
                <th>{% trans "Priority" %}</th>
 | 
			
		||||
                <th>{% trans "Statematch" %}</th>
 | 
			
		||||
                <th>{% trans "Directives" %}</th>
 | 
			
		||||
                        <th colspan="3">{% trans "Action" %}</th>
 | 
			
		||||
                    </tr>
 | 
			
		||||
                <th style="width:100px;">{% trans "Action" %}</th>
 | 
			
		||||
            </thead>
 | 
			
		||||
            <tbody>
 | 
			
		||||
            {% for rule in rules %}
 | 
			
		||||
| 
						 | 
				
			
			@ -166,7 +144,7 @@
 | 
			
		|||
                    <td>{{ rule.priority }}</td>
 | 
			
		||||
                    <td>{{ rule.statematch }}</td>
 | 
			
		||||
                    <td>{{ rule.directives }}</td>
 | 
			
		||||
                            <td style="width:30px;">
 | 
			
		||||
                    <td>
 | 
			
		||||
                        <form action="" method="post" style="height:10px" role="form">{% csrf_token %}
 | 
			
		||||
                            <input type="hidden" name="action" value="{{ rule.action }}">
 | 
			
		||||
                            <input type="hidden" name="direction" value="{{ rule.direction }}">
 | 
			
		||||
| 
						 | 
				
			
			@ -181,9 +159,6 @@
 | 
			
		|||
            </tbody>
 | 
			
		||||
        </table>
 | 
			
		||||
    </div>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
{% endblock %}
 | 
			
		||||
 | 
			
		||||
{% block script %}
 | 
			
		||||
| 
						 | 
				
			
			@ -209,7 +184,7 @@
 | 
			
		|||
        var edit_input = $('input[name="edit_xml"]');
 | 
			
		||||
        editor.getSession().on("change",function () {
 | 
			
		||||
        edit_input.val(editor.getSession().getValue());
 | 
			
		||||
        })
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        var rule_editor = ace.edit("rule_editor");
 | 
			
		||||
        rule_editor.getSession().setMode("ace/mode/xml");
 | 
			
		||||
| 
						 | 
				
			
			@ -217,7 +192,7 @@
 | 
			
		|||
        var rule_input = $('input[name="nwfilterrule_xml"]');
 | 
			
		||||
        rule_editor.getSession().on("change",function () {
 | 
			
		||||
        rule_input.val(rule_editor.getSession().getValue());
 | 
			
		||||
        })
 | 
			
		||||
        });
 | 
			
		||||
    </script>
 | 
			
		||||
 | 
			
		||||
{% endblock %}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue