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
Chill-project
Chill-Report
Commits
7cf41d9c
Commit
7cf41d9c
authored
Jun 24, 2015
by
Julien Fastré
Browse files
add newline (\n) at the end of file
parent
4a6dee76
Changes
14
Hide whitespace changes
Inline
Side-by-side
Entity/Report.php
View file @
7cf41d9c
...
...
@@ -228,4 +228,4 @@ class Report implements HasCenterInterface, HasScopeInterface
return
$this
->
person
->
getCenter
();
}
}
\ No newline at end of file
}
README.md
View file @
7cf41d9c
...
...
@@ -3,4 +3,4 @@ ChillReport
The bundle for reports
[

](http://travis-ci.org/#!/Chill-project/Report.png)
\ No newline at end of file
[

](http://travis-ci.org/#!/Chill-project/Report.png)
Resources/config/doctrine/Report.orm.yml
View file @
7cf41d9c
...
...
@@ -21,4 +21,5 @@ Chill\ReportBundle\Entity\Report:
targetEntity
:
Chill\MainBundle\Entity\Scope
cFGroup
:
targetEntity
:
Chill\CustomFieldsBundle\Entity\CustomFieldsGroup
lifecycleCallbacks
:
{
}
\ No newline at end of file
lifecycleCallbacks
:
{
}
\ No newline at end of file
Resources/config/routing.yml
View file @
7cf41d9c
...
...
@@ -48,4 +48,5 @@ report_export_select_type:
menus
:
export
:
order
:
100
label
:
Export reports
\ No newline at end of file
label
:
Export reports
\ No newline at end of file
Resources/config/services.yml
View file @
7cf41d9c
...
...
@@ -34,4 +34,5 @@ services:
-
"
@security.token_storage"
-
"
@chill.main.helper.translatable_string"
tags
:
-
{
name
:
form.type
,
alias
:
chill_reportbundle_report
}
\ No newline at end of file
-
{
name
:
form.type
,
alias
:
chill_reportbundle_report
}
\ No newline at end of file
Resources/translations/messages.fr.yml
View file @
7cf41d9c
...
...
@@ -35,4 +35,4 @@ User: Utilisateur
'
%total%
reports
matching
the
search
"%pattern%"'
:
'
{0}
Aucun
rapport
ne
correspond
à
la
recherche
"%pattern%"
|
{1}
Un
rapport
correspond
à
la
recherche
"%pattern%"
|
]1,Inf]%total%
rapports
correspondent
à
la
recherche
"%pattern%"'
#timeline
'
%user%
has
filled
a
%report_label%
report
on
%date%'
:
%
user% a ajouté un rapport '%report_label%' le %date%
\ No newline at end of file
'
%user%
has
filled
a
%report_label%
report
on
%date%'
:
%
user% a ajouté un rapport '%report_label%' le %date%
Resources/translations/messages.nl.yml
View file @
7cf41d9c
...
...
@@ -26,4 +26,4 @@ User: Gebruiker
'
Unable
to
find
this
report.'
:
Dossier is onvindbaar
'
This
is
not
the
report
of
the
person.'
:
"
Dit
is
niet
het
dossier
van
deze
person"
'
You
are
going
to
leave
a
page
with
unsubmitted
data.
Are
you
sure
you
want
to
leave
?'
:
'
U
bent
aan
te
vertrekken
een
pagina
die
veranderdt
datas
behoudt.
Bent
u
er
zeker
van
dat
u
wil
vertrekken
?'
\ No newline at end of file
'
You
are
going
to
leave
a
page
with
unsubmitted
data.
Are
you
sure
you
want
to
leave
?'
:
'
U
bent
aan
te
vertrekken
een
pagina
die
veranderdt
datas
behoudt.
Bent
u
er
zeker
van
dat
u
wil
vertrekken
?'
Resources/views/Report/export.csv.twig
View file @
7cf41d9c
...
...
@@ -26,4 +26,4 @@
#}
{%
endfor
%}
{#
#}
{{
'\r\n'
|
raw
}}
{#
#}
{%
endfor
%}
\ No newline at end of file
#}
{%
endfor
%}
Resources/views/Report/new.html.twig
View file @
7cf41d9c
...
...
@@ -34,4 +34,4 @@
<script
type=
"text/javascript"
>
chill
.
displayAlertWhenLeavingUnsubmittedForm
(
'
form[name="
{{
form.vars.form.vars.name
}}
"]
'
,
'
{{
"You are going to leave a page with unsubmitted data. Are you sure you want to leave ?"
|
trans
}}
'
);
</script>
{%
endblock
%}
\ No newline at end of file
{%
endblock
%}
Resources/views/Report/select_report_type.html.twig
View file @
7cf41d9c
...
...
@@ -30,4 +30,4 @@
</button>
{{
form_end
(
form
)
}}
{%
endblock
%}
\ No newline at end of file
{%
endblock
%}
Resources/views/Report/select_report_type_for_export.html.twig
View file @
7cf41d9c
...
...
@@ -30,4 +30,4 @@
</button>
{{
form_end
(
form
)
}}
{%
endblock
%}
\ No newline at end of file
{%
endblock
%}
Resources/views/Report/view.html.twig
View file @
7cf41d9c
...
...
@@ -51,4 +51,4 @@
<a
href=
"
{{
path
(
'report_edit'
,
{
'person_id'
:
entity.person.id
,
'report_id'
:
entity.id
}
)
}}
"
><i
class=
"fa fa-pencil"
></i>
{{
'Update the report'
|
trans
}}
</a>
{%
endblock
%}
\ No newline at end of file
{%
endblock
%}
Resources/views/Search/results.html.twig
View file @
7cf41d9c
...
...
@@ -42,4 +42,4 @@
{%
endfor
%}
</tbody>
</table>
{%
endif
%}
\ No newline at end of file
{%
endif
%}
Resources/views/Timeline/report_person_context.html.twig
View file @
7cf41d9c
...
...
@@ -24,4 +24,4 @@
</dl>
</div>
{%
endif
%}
</div>
\ No newline at end of file
</div>
Write
Preview
Supports
Markdown
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