mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
Fixed english
This commit is contained in:
@@ -281,7 +281,7 @@ class EventRevisions(generic.ListView):
|
||||
|
||||
if revisionNo >= len(revisions)-1:
|
||||
# oldest version
|
||||
thisItem['changes'] = [["(event initially created)",None,"Event Created"]]
|
||||
thisItem['changes'] = [["(initial version)",None,"Event Created"]]
|
||||
else:
|
||||
changes = self.compare(revisions[revisionNo+1].field_dict,thisRevision.field_dict)
|
||||
thisItem['item_changes'] = self.compare_items(revisions[revisionNo+1], thisRevision)
|
||||
|
||||
@@ -228,8 +228,8 @@
|
||||
{% endif %}
|
||||
</div>
|
||||
<div>
|
||||
<a href="{% url 'event_history' object.pk %}">
|
||||
Lasted edited at {{ object.last_edited_at|date:"d/m/Y H:i" }} by {{ object.last_edited_by.name }}
|
||||
<a href="{% url 'event_history' object.pk %}" title="View Revision History">
|
||||
Last edited at {{ object.last_edited_at|date:"d/m/Y H:i" }} by {{ object.last_edited_by.name }}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
@@ -242,8 +242,8 @@
|
||||
{% block footer %}
|
||||
<div class="row">
|
||||
<div class="col-sm-10 align-left">
|
||||
<a href="{% url 'event_history' object.pk %}">
|
||||
Lasted edited at {{ object.last_edited_at|date:"d/m/Y H:i" }} by {{ object.last_edited_by.name }}
|
||||
<a href="{% url 'event_history' object.pk %}" title="View Revision History">
|
||||
Last edited at {{ object.last_edited_at|date:"d/m/Y H:i" }} by {{ object.last_edited_by.name }}
|
||||
</a>
|
||||
</div>
|
||||
<div class="col-sm-2">
|
||||
|
||||
Reference in New Issue
Block a user