Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
re2o
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Nounous
re2o
Commits
b7a35a98
Commit
b7a35a98
authored
Jan 08, 2017
by
Dalahro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Logs des controles
parent
3444084b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
16 deletions
+18
-16
cotisations/models.py
cotisations/models.py
+1
-1
logs/templates/logs/aff_actions.html
logs/templates/logs/aff_actions.html
+17
-15
No files found.
cotisations/models.py
View file @
b7a35a98
...
@@ -28,7 +28,7 @@ class Facture(models.Model):
...
@@ -28,7 +28,7 @@ class Facture(models.Model):
return
name
return
name
def
__str__
(
self
):
def
__str__
(
self
):
return
str
(
self
.
date
)
+
' '
+
str
(
self
.
user
)
return
str
(
self
.
user
)
+
' '
+
str
(
self
.
date
)
@
receiver
(
post_save
,
sender
=
Facture
)
@
receiver
(
post_save
,
sender
=
Facture
)
def
facture_post_save
(
sender
,
**
kwargs
):
def
facture_post_save
(
sender
,
**
kwargs
):
...
...
logs/templates/logs/aff_actions.html
View file @
b7a35a98
...
@@ -16,20 +16,22 @@
...
@@ -16,20 +16,22 @@
</tr>
</tr>
</thead>
</thead>
{% for revision in revisions_list %}
{% for revision in revisions_list %}
<tr>
{% for reversion in revision.version_set.all %}
<td>
{% for reversion in revision.version_set.all %}{{ reversion.object|truncatechars:20 }}{% endfor %}
</td>
<tr>
<td>
{% for reversion in revision.version_set.all %}{{ reversion.object|classname }}{% endfor %}
</td>
<td>
{{ reversion.object|truncatechars:20 }}
</td>
<td>
{{ revision.user }}
</td>
<td>
{{ reversion.object|classname }}
</td>
<td>
{{ revision.date_created }}
</td>
<td>
{{ revision.user }}
</td>
<td>
{{ revision.comment }}
</td>
<td>
{{ revision.date_created }}
</td>
{% if is_bureau %}
<td>
{{ revision.comment }}
</td>
<td>
{% if is_bureau %}
<a
class=
"btn btn-danger btn-sm"
role=
"button"
href=
"{% url 'logs:revert-action' revision.id %}"
>
<td>
<i
class=
"glyphicon glyphicon-remove"
></i>
<a
class=
"btn btn-danger btn-sm"
role=
"button"
href=
"{% url 'logs:revert-action' revision.id %}"
>
Annuler
<i
class=
"glyphicon glyphicon-remove"
></i>
</a>
Annuler
</td>
</a>
{% endif %}
</td>
</tr>
{% endif %}
</tr>
{% endfor %}
{% endfor %}
{% endfor %}
</table>
</table>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment