Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
osp
tools.gitlabculture
Commits
a6a9a544
Commit
a6a9a544
authored
Mar 06, 2020
by
sarah
Browse files
merge
parents
d2d1c8f9
5f28335b
Changes
1
Hide whitespace changes
Inline
Side-by-side
generator/templates/project.html
View file @
a6a9a544
...
...
@@ -19,21 +19,25 @@
{{ project.readme }}
</section>
{% endif %}
<h3>
Tree
</h3>
<ul>
{% for file in project.tree %}
<li>
{{ file.name }}
</li>
{% endfor %}
</ul>
<section
id=
"tree"
>
<h3>
Tree
</h3>
<ul>
{% for file in project.tree %}
<li>
{{ file.name }}
</li>
{% endfor %}
</ul>
</section>
<section
id=
"commits"
>
<h3>
Commits
</h3>
<ul>
{% for commit in project.commits %}
<li>
{{ commit.author_name }}: {{ commit.message }}
</li>
{% endfor %}
</ul>
</section>
<h3>
Commits
</h3>
<ul
class=
"commit-list"
>
{% for commit in project.commits %}
<li
class=
"commit-item"
>
<a
href=
"https://gitlab.constantvzw.org/osp/{{ project.name }}/-/commit/{{ commit.id }}"
>
<time
class=
"commit-time"
>
{{ commit.committed_date }}
</time>
</a>
<p
class=
"commit-message"
>
{{ commit.message }}
</p>
<p
class=
"commit-author"
>
{{ commit.author_name }}
</p>
</li>
{% endfor %}
</ul>
</div>
{% endblock %}
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