mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-02-28 00:58:23 +00:00
Fix more HTML
This commit is contained in:
@@ -235,7 +235,6 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="col-12 text-right">
|
<div class="col-12 text-right">
|
||||||
{% button 'edit' url='ec_edit' pk=object.pk %}
|
{% button 'edit' url='ec_edit' pk=object.pk %}
|
||||||
{% button 'view' url='event_detail' pk=object.pk text="Event" %}
|
{% button 'view' url='event_detail' pk=object.pk text="Event" %}
|
||||||
|
|||||||
@@ -32,9 +32,9 @@
|
|||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
$('button[data-action=add]').on('click', function (event) {
|
$('button[data-action=add]').on('click', function (event) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
var target = $($(this).attr('data-target'));
|
let target = $($(this).attr('data-target'));
|
||||||
var newID = Number(target.attr('data-pk'));
|
let newID = Number(target.attr('data-pk'));
|
||||||
var newRow = $($(this).attr('data-clone'))
|
let newRow = $($(this).attr('data-clone'))
|
||||||
.clone().attr('style', "")
|
.clone().attr('style', "")
|
||||||
.attr('id', function(i, val){
|
.attr('id', function(i, val){
|
||||||
return val.split("_")[0] + '_' + newID;
|
return val.split("_")[0] + '_' + newID;
|
||||||
@@ -204,7 +204,7 @@
|
|||||||
<td>
|
<td>
|
||||||
<select name="crewmember_new" class="form-control" data-live-search="true" data-sourceurl="{% url 'api_secure' model='profile' %}?fields=first_name,last_name,initials" disabled="true"></select>
|
<select name="crewmember_new" class="form-control" data-live-search="true" data-sourceurl="{% url 'api_secure' model='profile' %}?fields=first_name,last_name,initials" disabled="true"></select>
|
||||||
</td>
|
</td>
|
||||||
<td style="min-width: 15ch"><input name="start_new" type="datetime-local" class="form-control" value="{{ i.start }}" disabled="true"/></td>
|
<td style="min-width: 15ch"><input name="start_new" type="datetime-local" class="form-control" value="{{ i.start }}" disabled=""/></td>
|
||||||
<td style="min-width: 15ch"><input name="role_new" type="text" class="form-control" value="{{ i.role }}" disabled="true"/></td>
|
<td style="min-width: 15ch"><input name="role_new" type="text" class="form-control" value="{{ i.role }}" disabled="true"/></td>
|
||||||
<td style="min-width: 15ch"><input name="end_new" type="datetime-local" class="form-control" value="{{ i.end }}" disabled="true" /></td>
|
<td style="min-width: 15ch"><input name="end_new" type="datetime-local" class="form-control" value="{{ i.end }}" disabled="true" /></td>
|
||||||
<td><button type="button" class="btn btn-danger btn-sm mt-1" data-id='{{crew.pk}}' data-action='delete' data-target='#crewmember'><span class="fas fa-times"></span></button></td>
|
<td><button type="button" class="btn btn-danger btn-sm mt-1" data-id='{{crew.pk}}' data-action='delete' data-target='#crewmember'><span class="fas fa-times"></span></button></td>
|
||||||
@@ -240,7 +240,7 @@
|
|||||||
<div class="row my-3" id="size-0">
|
<div class="row my-3" id="size-0">
|
||||||
<div class="col-12">
|
<div class="col-12">
|
||||||
<div class="card border-success">
|
<div class="card border-success">
|
||||||
<div class="card-header">Electrical Checks <small>for ‘Small’ TEC Events <6kVA (aprox. 26A)</small></div>
|
<div class="card-header">Electrical Checks <small>for ‘Small’ TEC Events <6kVA (approx. 26A)</small></div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
{% include 'partials/checklist_checkbox.html' with formitem=form.rcds %}
|
{% include 'partials/checklist_checkbox.html' with formitem=form.rcds %}
|
||||||
{% include 'partials/checklist_checkbox.html' with formitem=form.supply_test %}
|
{% include 'partials/checklist_checkbox.html' with formitem=form.supply_test %}
|
||||||
@@ -337,7 +337,7 @@
|
|||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<hr>
|
<hr/>
|
||||||
{% include 'partials/checklist_checkbox.html' with formitem=form.all_rcds_tested %}
|
{% include 'partials/checklist_checkbox.html' with formitem=form.all_rcds_tested %}
|
||||||
{% include 'partials/checklist_checkbox.html' with formitem=form.public_sockets_tested %}
|
{% include 'partials/checklist_checkbox.html' with formitem=form.public_sockets_tested %}
|
||||||
{% include 'partials/ec_power_info.html' %}
|
{% include 'partials/ec_power_info.html' %}
|
||||||
|
|||||||
@@ -38,7 +38,7 @@
|
|||||||
<dt class="col-sm-6">Email</dt>
|
<dt class="col-sm-6">Email</dt>
|
||||||
<dd class="col-sm-6">{{ object.person.email|linkornone:'mailto' }}</dd>
|
<dd class="col-sm-6">{{ object.person.email|linkornone:'mailto' }}</dd>
|
||||||
<dt class="col-sm-6">Phone Number</dt>
|
<dt class="col-sm-6">Phone Number</dt>
|
||||||
<dd class="col-sm-6">{{ object.person.phone|linkornone:'tel' }}</a></dd>
|
<dd class="col-sm-6">{{ object.person.phone|linkornone:'tel' }}</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -59,7 +59,7 @@
|
|||||||
<dt class="col-sm-6">Email</dt>
|
<dt class="col-sm-6">Email</dt>
|
||||||
<dd class="col-sm-6">{{ object.organisation.email|linkornone:'mailto' }}</dd>
|
<dd class="col-sm-6">{{ object.organisation.email|linkornone:'mailto' }}</dd>
|
||||||
<dt class="col-sm-6">Phone Number</dt>
|
<dt class="col-sm-6">Phone Number</dt>
|
||||||
<dd class="col-sm-6">{{ object.organisation.phone|linkornone:'tel' }}</a></dd>
|
<dd class="col-sm-6">{{ object.organisation.phone|linkornone:'tel' }}</dd>
|
||||||
<dt class="col-sm-6">Has SU Account</dt>
|
<dt class="col-sm-6">Has SU Account</dt>
|
||||||
<dd class="col-sm-6">{{ event.organisation.union_account|yesno|capfirst }}</dd>
|
<dd class="col-sm-6">{{ event.organisation.union_account|yesno|capfirst }}</dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
|||||||
@@ -95,7 +95,6 @@
|
|||||||
{{ object.description|linebreaksbr }}
|
{{ object.description|linebreaksbr }}
|
||||||
</p>
|
</p>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</table>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -36,6 +36,7 @@
|
|||||||
|
|
||||||
<p>Your event will not be booked until you complete this form.</p>
|
<p>Your event will not be booked until you complete this form.</p>
|
||||||
|
|
||||||
<p>TEC PA & Lighting<br/>
|
<p>TEC PA & Lighting</p>
|
||||||
|
<br/>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -60,10 +60,10 @@
|
|||||||
<table class="table table-hover">
|
<table class="table table-hover">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col">Date</td>
|
<th scope="col">Date</th>
|
||||||
<th scope="col">Amount</td>
|
<th scope="col">Amount</th>
|
||||||
<th scope="col">Method</td>
|
<th scope="col">Method</th>
|
||||||
<th scope="col"></td>
|
<th scope="col"></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
<td>{{ payment.amount|floatformat:2 }}</td>
|
<td>{{ payment.amount|floatformat:2 }}</td>
|
||||||
<td>{{ payment.get_method_display }}</td>
|
<td>{{ payment.get_method_display }}</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{% url 'payment_delete' payment.pk %}" class="btn btn-small btn-danger"><span class="fas fa-times"</a>
|
<a href="{% url 'payment_delete' payment.pk %}" class="btn btn-small btn-danger"><span class="fas fa-times"></span></a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|||||||
@@ -27,7 +27,7 @@
|
|||||||
<span class="text-muted">{% if invoice.void %}(VOID){% elif invoice.is_closed %}(PAID){% else %}(O/S){% endif %}</span></th>
|
<span class="text-muted">{% if invoice.void %}(VOID){% elif invoice.is_closed %}(PAID){% else %}(O/S){% endif %}</span></th>
|
||||||
<td><a href="{% url 'event_detail' invoice.event.pk %}">N{{ invoice.event.pk|stringformat:"05d" }}</a>: {{ invoice.event.name }} <br>
|
<td><a href="{% url 'event_detail' invoice.event.pk %}">N{{ invoice.event.pk|stringformat:"05d" }}</a>: {{ invoice.event.name }} <br>
|
||||||
<span class="text-muted">{{ invoice.event.get_status_display }}{% if not invoice.event.mic %}, No MIC{% endif %}
|
<span class="text-muted">{{ invoice.event.get_status_display }}{% if not invoice.event.mic %}, No MIC{% endif %}
|
||||||
</span></td>
|
</span>
|
||||||
</td>
|
</td>
|
||||||
<td>{% if invoice.event.organisation %}
|
<td>{% if invoice.event.organisation %}
|
||||||
{{ invoice.event.organisation.name }}
|
{{ invoice.event.organisation.name }}
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>300</td>
|
<td>300</td>
|
||||||
<td>167</td>
|
<td>167</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>500</td>
|
<td>500</td>
|
||||||
<td>100</td>
|
<td>100</td>
|
||||||
|
|||||||
@@ -152,7 +152,6 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="col-12 text-right">
|
<div class="col-12 text-right">
|
||||||
<a href="{% url 'ra_edit' object.pk %}" class="btn btn-warning my-3"><span class="fas fa-edit"></span> <span
|
<a href="{% url 'ra_edit' object.pk %}" class="btn btn-warning my-3"><span class="fas fa-edit"></span> <span
|
||||||
class="d-none d-sm-inline">Edit</span></a>
|
class="d-none d-sm-inline">Edit</span></a>
|
||||||
|
|||||||
@@ -40,8 +40,8 @@
|
|||||||
<div class="form-group form-row">
|
<div class="form-group form-row">
|
||||||
{% include 'partials/form_field.html' with field=form.date_acquired col="col-6" %}
|
{% include 'partials/form_field.html' with field=form.date_acquired col="col-6" %}
|
||||||
<div class="col-sm-4">
|
<div class="col-sm-4">
|
||||||
<btn class="btn btn-info" onclick="setAcquired(true);" tabindex="-1">Today</btn>
|
<button class="btn btn-info" onclick="setAcquired(true);" tabindex="-1">Today</button>
|
||||||
<btn class="btn btn-warning" onclick="setAcquired(false);" tabindex="-1">Unknown</btn>
|
<button class="btn btn-warning" onclick="setAcquired(false);" tabindex="-1">Unknown</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group form-row">
|
<div class="form-group form-row">
|
||||||
@@ -64,16 +64,16 @@
|
|||||||
<div class="form-group form-row">
|
<div class="form-group form-row">
|
||||||
{% include 'partials/form_field.html' with field=form.length append=form.length.help_text col="col-6" %}
|
{% include 'partials/form_field.html' with field=form.length append=form.length.help_text col="col-6" %}
|
||||||
<div class="col-4">
|
<div class="col-4">
|
||||||
<btn class="btn btn-danger" onclick="setFieldValue('{{ form.length.id_for_label }}','5');" tabindex="-1">5{{ form.length.help_text }}</btn>
|
<button class="btn btn-danger" onclick="setFieldValue('{{ form.length.id_for_label }}','5');" tabindex="-1">5{{ form.length.help_text }}</button>
|
||||||
<btn class="btn btn-success" onclick="setFieldValue('{{ form.length.id_for_label }}','10');" tabindex="-1">10{{ form.length.help_text }}</btn>
|
<button class="btn btn-success" onclick="setFieldValue('{{ form.length.id_for_label }}','10');" tabindex="-1">10{{ form.length.help_text }}</button>
|
||||||
<btn class="btn btn-info" onclick="setFieldValue('{{ form.length.id_for_label }}','20');" tabindex="-1">20{{ form.length.help_text }}</btn>
|
<button class="btn btn-info" onclick="setFieldValue('{{ form.length.id_for_label }}','20');" tabindex="-1">20{{ form.length.help_text }}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group form-row">
|
<div class="form-group form-row">
|
||||||
{% include 'partials/form_field.html' with field=form.csa append=form.csa.help_text title='CSA' col="col-6" %}
|
{% include 'partials/form_field.html' with field=form.csa append=form.csa.help_text title='CSA' col="col-6" %}
|
||||||
<div class="col-4">
|
<div class="col-4">
|
||||||
<btn class="btn btn-secondary" onclick="setFieldValue('{{ form.csa.id_for_label }}', '1.5');" tabindex="-1">1.5{{ form.csa.help_text }}</btn>
|
<button class="btn btn-secondary" onclick="setFieldValue('{{ form.csa.id_for_label }}', '1.5');" tabindex="-1">1.5{{ form.csa.help_text }}</button>
|
||||||
<btn class="btn btn-secondary" onclick="setFieldValue('{{ form.csa.id_for_label }}', '2.5');" tabindex="-1">2.5{{ form.csa.help_text }}</btn>
|
<button class="btn btn-secondary" onclick="setFieldValue('{{ form.csa.id_for_label }}', '2.5');" tabindex="-1">2.5{{ form.csa.help_text }}</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
<span class="source"> TEC Asset Database</span>
|
<span class="source"> TEC Asset Database</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
<h3><a href="{% url 'asset_detail' object.asset_id %}">Asset: {{ object.asset_id }} | {{ object.description }} </a></h3>
|
<h3><a href="{% url 'asset_detail' object.asset_id %}">Asset: {{ object.asset_id }} | {{ object.description }} </a></h3>
|
||||||
<h4>
|
<h4>
|
||||||
@@ -32,7 +31,6 @@
|
|||||||
<dd class="dont-break-out">{{ object.comments|linebreaksbr }}<dd>
|
<dd class="dont-break-out">{{ object.comments|linebreaksbr }}<dd>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</dl>
|
</dl>
|
||||||
</table>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -33,7 +33,7 @@
|
|||||||
url: '{% url 'asset_search_json' %}',
|
url: '{% url 'asset_search_json' %}',
|
||||||
type: "GET",
|
type: "GET",
|
||||||
data: function () {
|
data: function () {
|
||||||
var params = {
|
let params = {
|
||||||
{% verbatim %}query: '{{{q}}}'{% endverbatim %}
|
{% verbatim %}query: '{{{q}}}'{% endverbatim %}
|
||||||
};
|
};
|
||||||
return params;
|
return params;
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% include 'form_errors.html' %}
|
{% include 'form_errors.html' %}
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
<input type="hidden" name="id" value="{{ object.id|default:0 }}" hidden=true>
|
<input type="hidden" name="id" value="{{ object.id|default:0 }}" hidden="">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-sm-12">
|
<div class="col-sm-12">
|
||||||
{% if create or edit %}
|
{% if create or edit %}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
<label class="custom-control-label" for="darkSwitch">Dark Mode</label>
|
<label class="custom-control-label" for="darkSwitch">Dark Mode</label>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section class="mb-5 pt-5" id="typography">
|
<section class="mb-5 pt-5" id="typography">
|
||||||
<div class="row bg-light py-4 mb-5">
|
<div class="row bg-light py-4 mb-5">
|
||||||
@@ -320,7 +321,6 @@ public abstract class L2Char extends L2Object {
|
|||||||
<div class="p-3 mb-2 bg-white text-dark">.bg-white</div>
|
<div class="p-3 mb-2 bg-white text-dark">.bg-white</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<h1 class="col-sm-12 pb-3">R<small class="text-muted">ig</small> I<small class="text-muted">nformation</small class="text-muted"> G<small class="text-muted">athering</small> S<small class="text-muted">ystem</small></h1>
|
<h1 class="col-sm-12 pb-3">R<small class="text-muted">ig</small> I<small class="text-muted">nformation</small> G<small class="text-muted">athering</small> S<small class="text-muted">ystem</small></h1>
|
||||||
<h4 class="col-sm-12 pb-3">Welcome back {{ user.get_full_name }}, there {%if rig_count == 1 %}is one rig coming up{%else%}are {{ rig_count|apnumber }} rigs coming up.{%endif%}</h4>
|
<h4 class="col-sm-12 pb-3">Welcome back {{ user.get_full_name }}, there {%if rig_count == 1 %}is one rig coming up{%else%}are {{ rig_count|apnumber }} rigs coming up.{%endif%}</h4>
|
||||||
<div class="col-sm mb-3">
|
<div class="col-sm mb-3">
|
||||||
<div class="card">
|
<div class="card">
|
||||||
|
|||||||
@@ -1,11 +1,9 @@
|
|||||||
{% extends "base_rigs.html" %}
|
{% extends "base_rigs.html" %}
|
||||||
{% load widget_tweaks %}
|
{% load widget_tweaks %}
|
||||||
|
|
||||||
|
|
||||||
{% block title %}Change Password{% endblock %}
|
{% block title %}Change Password{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div class="col-sm-10 col-sm-offset-1">
|
<div class="col-sm-10 col-sm-offset-1">
|
||||||
<h3>Change Password</h3>
|
<h3>Change Password</h3>
|
||||||
{% if form.errors or supplement_form.errors %}
|
{% if form.errors or supplement_form.errors %}
|
||||||
@@ -15,7 +13,7 @@
|
|||||||
{{supplement_form.errors}}
|
{{supplement_form.errors}}
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<p>Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly.</p>
|
<p>Please enter your old password, for security's sake, and then enter your new password twice, so we can verify you typed it in correctly.</p>
|
||||||
|
|
||||||
<div class="col-sm-8 col-sm-offset-2">
|
<div class="col-sm-8 col-sm-offset-2">
|
||||||
<form action="" method="post" class="" role="form">{% csrf_token %}
|
<form action="" method="post" class="" role="form">{% csrf_token %}
|
||||||
@@ -30,4 +28,5 @@
|
|||||||
<p><input type="submit" value="Change Password" class="btn btn-primary pull-right"></p>
|
<p><input type="submit" value="Change Password" class="btn btn-primary pull-right"></p>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|||||||
@@ -46,7 +46,7 @@
|
|||||||
<div class="col text-right">
|
<div class="col text-right">
|
||||||
<div class="btn-group">
|
<div class="btn-group">
|
||||||
<a href="{% url 'profile_update_self' %}" class="btn btn-warning">
|
<a href="{% url 'profile_update_self' %}" class="btn btn-warning">
|
||||||
Edit Profile <i class="fas fa-edit"></i>
|
Edit Profile <span class="fas fa-edit"></span>
|
||||||
</a>
|
</a>
|
||||||
<a href="{% url 'password_change' %}" class="btn btn-light">
|
<a href="{% url 'password_change' %}" class="btn btn-light">
|
||||||
Change Password <span class="fas fa-lock"></span>
|
Change Password <span class="fas fa-lock"></span>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@
|
|||||||
$('#activity_loading').slideUp(dur,function(){
|
$('#activity_loading').slideUp(dur,function(){
|
||||||
$('#activity').slideDown(dur);
|
$('#activity').slideDown(dur);
|
||||||
});
|
});
|
||||||
var whiteList = $.fn.tooltip.Constructor.Default.whiteList
|
const whiteList = $.fn.tooltip.Constructor.Default.whiteList;
|
||||||
whiteList.ins = []
|
whiteList.ins = []
|
||||||
whiteList.del = []
|
whiteList.del = []
|
||||||
$('#activity [data-toggle="popover"]').popover({whiteList: whiteList});
|
$('#activity [data-toggle="popover"]').popover({whiteList: whiteList});
|
||||||
|
|||||||
@@ -14,7 +14,7 @@
|
|||||||
{% for version in object_list %}
|
{% for version in object_list %}
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">{{ version.revision.date_created }}</th>
|
<th scope="row">{{ version.revision.date_created }}</th>
|
||||||
<td><a href="{{ version.changes.new.get_absolute_url }}">{{ version.changes.new.display_id|default:version.changes.new.pk }} | {{version.changes.new|to_class_name}}</td>
|
<td><a href="{{ version.changes.new.get_absolute_url }}">{{ version.changes.new.display_id|default:version.changes.new.pk }} | {{version.changes.new|to_class_name}}</a></td>
|
||||||
<td>{{ version.pk }}|{{ version.revision.pk }}</td>
|
<td>{{ version.pk }}|{{ version.revision.pk }}</td>
|
||||||
<td>{{ version.revision.user.name|default:"System" }}</td>
|
<td>{{ version.revision.user.name|default:"System" }}</td>
|
||||||
<td>
|
<td>
|
||||||
|
|||||||
@@ -3,10 +3,10 @@
|
|||||||
<table class="table table-striped">
|
<table class="table table-striped">
|
||||||
<thead class="thead-dark">
|
<thead class="thead-dark">
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="col">Date</td>
|
<th scope="col">Date</th>
|
||||||
<th scope="col">Version ID</td>
|
<th scope="col">Version ID</th>
|
||||||
<th scope="col">User</td>
|
<th scope="col">User</th>
|
||||||
<th scope="col">Changes</td>
|
<th scope="col">Changes</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
$(function () {
|
$(function () {
|
||||||
$('[data-toggle="tooltip"]').tooltip();
|
$('[data-toggle="tooltip"]').tooltip();
|
||||||
});
|
});
|
||||||
var whiteList = $.fn.tooltip.Constructor.Default.whiteList
|
const whiteList = $.fn.tooltip.Constructor.Default.whiteList;
|
||||||
whiteList.ins = []
|
whiteList.ins = []
|
||||||
whiteList.del = []
|
whiteList.del = []
|
||||||
$(function() {
|
$(function() {
|
||||||
|
|||||||
Reference in New Issue
Block a user