##// END OF EJS Templates
main-page: fixed jumping of text in grid loading....
main-page: fixed jumping of text in grid loading. - new logic starts with everything hidden and global loading marker - show only those grida that contain data.

File last commit:

r1282:90601d74 default
r4185:d325c1c9 stable
Show More
patch_changeset.mako
24 lines | 589 B | application/x-mako | MakoHtmlLexer
%if h.is_hg(c.rhodecode_repo):
# ${c.rhodecode_repo.alias.upper()} changeset patch
# User ${c.commit.author |n}
# Date ${c.commit.date}
# Node ID ${c.commit.raw_id}
${c.parent_tmpl}
${c.commit.message |n}
%elif h.is_git(c.rhodecode_repo):
From ${c.commit.raw_id} ${c.commit.date}
From: ${c.commit.author |n}
Date: ${c.commit.date}
Subject: [PATCH] ${c.commit.message |n}
---
%elif h.is_svn(c.rhodecode_repo):
# ${c.rhodecode_repo.alias.upper()} changeset patch
# User ${c.commit.author |n}
# Date ${c.commit.date}
# Revision ${c.commit.raw_id}
${c.commit.message |n}
%endif
${c.diff|n}