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
02194340
Commit
02194340
authored
Nov 19, 2016
by
lhark
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Link models in the UI
parent
079defc7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
+16
-4
cotisations/templates/cotisations/aff_cotisations.html
cotisations/templates/cotisations/aff_cotisations.html
+1
-1
topologie/templates/topologie/aff_port.html
topologie/templates/topologie/aff_port.html
+15
-3
No files found.
cotisations/templates/cotisations/aff_cotisations.html
View file @
02194340
...
...
@@ -17,7 +17,7 @@
</thead>
{% for facture in facture_list %}
<tr>
<td>
{{ facture.user }}
</td>
<td>
<a
href=
"{% url 'users:profil' userid=facture.user.id %}"
>
{{ facture.user }}
</a>
</td>
<td>
{{ facture.name }}
</td>
<td>
{{ facture.prix_total }}
</td>
<td>
{{ facture.paiement }}
</td>
...
...
topologie/templates/topologie/aff_port.html
View file @
02194340
...
...
@@ -12,9 +12,21 @@
{% for port in port_list %}
<tr>
<td>
{{ port.port }}
</td>
<td>
{{ port.room }}
</td>
<td>
{{ port.machine_interface }}
</td>
<td>
{{ port.related }}
</td>
<td>
{% if port.room %}
{{ port.room }}
{% endif %}
</td>
<td>
{% if port.machine_interface %}
<a
href=
"{% url 'users:profil' userid=port.machine_interface.machine.user.id %}"
>
{{ port.machine_interface }}
</a>
{% endif %}
</td>
<td>
{% if port.related %}
<a
href=
"{% url 'topologie:index-port' switch_id=port.related.switch.id %}"
>
{{ port.related }}
</a>
{% endif %}
</td>
<td>
{{ port.details }}
</td>
<td
class=
"text-right"
>
<a
class=
"btn btn-info btn-sm"
role=
"button"
title=
"Historique"
href=
"{% url 'topologie:history' 'port' port.pk %}"
>
...
...
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