Logo

GitLab

Sign in

SGJP / Kuznia

  • Back to Group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Kuznia
  • history
  • templates
  • history_row.html
  • źródłowy język komunikatów zmieniony na angielski ...
    5f54df87
    --HG--
    branch : beta
    janek37 authored
    2015-10-31 13:42:57 +0100  
    Browse Code ยป
history_row.html 488 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
{% load i18n %}
{% for header, values in rows %}
    <tr>
        <td>{{ header }}</td>
        <td>
            {% if values.0 == None %}
                <em>{% trans 'added' %}</em>
            {% else %}
                {{ values.0 }}
            {% endif %}
        </td>
        <td>
            {% if values.1 == None %}
                <em>{% trans 'deleted' %}</em>
            {% else %}
                {{ values.1 }}
            {% endif %}
        </td>
    </tr>
{% endfor %}