Revision 2aa27c9f
Von Hans P. Schlaepfer vor mehr als 4 Jahren hinzugefügt
templates/webpages/requirement_spec/_edit_time_and_cost_estimate.html | ||
---|---|---|
[%- USE LxERP -%][%- USE L -%][%- USE HTML -%][%- USE P -%]
|
||
[%- DEFAULT id_prefix = 'time_and_cost_estimate_form' %]
|
||
[% USE LxERP %]
|
||
[% USE L %]
|
||
[% USE HTML %]
|
||
[% USE P %]
|
||
[% DEFAULT id_prefix = 'time_and_cost_estimate_form' %]
|
||
|
||
<div id="time_cost_estimate_form_container" class="edit-time-cost-estimate-context-menu">
|
||
[%- IF !SELF.requirement_spec.sections.size %]
|
templates/webpages/requirement_spec/_edit_time_and_cost_estimate_item.html | ||
---|---|---|
[%- USE HTML -%][%- USE LxERP -%][%- USE P -%][%- USE L -%]
|
||
<tr class="listrow">
|
||
[% L.hidden_tag("requirement_spec_items[+].id", item.id, id = id_prefix _ '_item_id') %]
|
||
[% USE HTML %]
|
||
[% USE LxERP %]
|
||
[% USE P %]
|
||
[% USE L %]
|
||
|
||
<td style="padding-left: [%- level * 50 -%]px">
|
||
[%- item.fb_number _ ": " _ item.description_as_restricted_html -%]
|
templates/webpages/requirement_spec/_filter.html | ||
---|---|---|
[%- USE HTML %][%- USE L %][%- USE LxERP %]
|
||
[% USE HTML %]
|
||
[% USE L %]
|
||
[% USE LxERP %]
|
||
|
||
<div class="filter_toggle">
|
||
<a href="#" onClick="$('.filter_toggle').toggle(); $('#filter_customer_name_substr_ilike').focus();">[% LxERP.t8("Show Filter") %]</a>
|
templates/webpages/requirement_spec/_form.html | ||
---|---|---|
[%- USE LxERP -%][%- USE L -%][%- USE HTML -%]
|
||
[%- DEFAULT id_prefix = 'basic_settings_form'
|
||
submit_as = 'post'
|
||
[% USE LxERP %]
|
||
[% USE L %]
|
||
[% USE HTML %]
|
||
%]
|
||
<form method="post" action="controller.pl" id="[% id_prefix %]"[% UNLESS submit_as == 'post' %] class="edit-basic-settings-context-menu"[% END %]>
|
||
<h2>[% LxERP.t8("Edit general settings") %]</h2>
|
templates/webpages/requirement_spec/_header.html | ||
---|---|---|
[%- USE HTML -%][%- USE LxERP -%]
|
||
<div id="requirement-spec-header">
|
||
<h1>
|
||
[%- IF SELF.requirement_spec.is_template %]
|
||
... | ... | |
[%- END %]
|
||
</h1>
|
||
</div>
|
||
[% USE HTML %]
|
||
[% USE LxERP %]
|
templates/webpages/requirement_spec/_new_project_form.html | ||
---|---|---|
[%- USE LxERP -%][%- USE L -%]
|
||
[%- SET id_prefix = "project_link_form"
|
||
style = "width: 300px" %]
|
||
<form method="post" action="controller.pl" id="[% id_prefix %]"[% UNLESS submit_as == 'post' %] class="edit-project-link-context-menu"[% END %]>
|
||
<h2>[% LxERP.t8("Edit project link") %]: [% LxERP.t8("Create a new project") %]</h2>
|
||
|
||
[% L.hidden_tag("id", SELF.requirement_spec.id, id=id_prefix _ "_id") %]
|
||
[% L.hidden_tag("project_link_action", "create", id=id_prefix _ "_project_link_action") %]
|
||
[% USE LxERP %]
|
||
[% USE L %]
|
||
[% SET id_prefix = "project_link_form" %]
|
||
[% style = "width:300px;" %]
|
||
|
||
<table class="rs_input_field">
|
||
<tr>
|
templates/webpages/requirement_spec/_project_link_details.html | ||
---|---|---|
[%- USE HTML -%][%- USE LxERP -%]
|
||
<table>
|
||
<tr class="listrow">
|
||
<td>[% LxERP.t8("Project Number") %]:</td>
|
||
<td>[% HTML.escape(requirement_spec.project.projectnumber) %]</td>
|
||
</tr>
|
||
[% USE HTML %]
|
||
[% USE LxERP %]
|
||
|
||
<tr class="listrow">
|
||
<td>[% LxERP.t8("Description") %]:</td>
|
templates/webpages/requirement_spec/_project_link_form.html | ||
---|---|---|
[%- USE LxERP -%][%- USE L -%]
|
||
[%- SET id_prefix = "project_link_form" %]
|
||
[% USE LxERP %]
|
||
[% USE L %]
|
||
[% SET id_prefix = "project_link_form" %]
|
||
|
||
<form method="post" action="controller.pl" id="[% id_prefix %]"[% UNLESS submit_as == 'post' %] class="edit-project-link-context-menu"[% END %]>
|
||
<h2>[% LxERP.t8("Edit project link") %]</h2>
|
||
|
templates/webpages/requirement_spec/_show_time_and_cost_estimate.html | ||
---|---|---|
[%- USE LxERP -%][%- USE L -%][%- USE HTML -%][%- USE P -%]
|
||
[%- DEFAULT id_prefix = 'time_and_cost_estimate_form' %]
|
||
[%- SET total_cost = 0 %]
|
||
[% USE LxERP %]
|
||
[% USE L %]
|
||
[% USE HTML %]
|
||
[% USE P %]
|
||
[% DEFAULT id_prefix = 'time_and_cost_estimate_form' %]
|
||
[% SET total_cost = 0 %]
|
||
|
||
<div id="time_cost_estimate"[% IF initially_hidden %] style="display: none;"[% END %]>
|
||
[%- IF !SELF.requirement_spec.sections.size %]
|
templates/webpages/requirement_spec/_show_time_and_cost_estimate_item.html | ||
---|---|---|
[%- USE HTML -%][%- USE LxERP -%][%- USE P -%]
|
||
<tr class="listrow">
|
||
<td style="padding-left: [%- level * 50 -%]px">
|
||
[%- item.fb_number _ ": " _ item.description_as_restricted_html -%]
|
||
... | ... | |
<td> </td>
|
||
<td> </td>
|
||
[%- END -%]
|
||
[% USE HTML %]
|
||
[% USE LxERP %]
|
||
[% USE P %]
|
||
</tr>
|
||
|
||
[%- IF item.children.size -%]
|
templates/webpages/requirement_spec/_version.html | ||
---|---|---|
[%- USE L -%][%- USE LxERP -%][%- USE HTML -%]
|
||
[% USE L %]
|
||
[% USE LxERP %]
|
||
[% USE HTML %]
|
||
|
||
[% L.hidden_tag('current_version_id', requirement_spec.version.id) %]
|
||
[% LxERP.t8("Current version") %]:
|
||
[% IF !requirement_spec.version.id %]
|
templates/webpages/requirement_spec/report_top.html | ||
---|---|---|
[%- USE L %]
|
||
[%- PROCESS "requirement_spec/_filter.html" filter=SELF.models.filtered.laundered %]
|
||
<hr>
|
||
[% USE L %]
|
templates/webpages/requirement_spec/select_template_to_paste.html | ||
---|---|---|
[%- USE LxERP -%][%- USE HTML -%][%- USE L -%]
|
||
[%- BLOCK text_blocks %]
|
||
[%- IF blocks.size %]
|
||
<li>
|
||
[%- title %]:
|
||
[% USE LxERP %]
|
||
[% USE HTML %]
|
||
[% USE L %]
|
||
<ol>
|
||
[%- FOREACH block = blocks %]
|
||
<li>[%- HTML.escape(block.title) %]</li>
|
templates/webpages/requirement_spec/show.html | ||
---|---|---|
[%- USE JSON -%][%- USE HTML %][%- USE L %][%- USE LxERP %][%- USE P -%][%- USE JavaScript -%]
|
||
[% USE JSON %]
|
||
[% USE HTML %]
|
||
[% USE L %]
|
||
[% USE LxERP %]
|
||
[% USE P %]
|
||
[% USE JavaScript %]
|
||
[% SET sections = SELF.requirement_spec.sections_sorted || [] %]
|
||
|
||
[%- INCLUDE 'common/flash.html' %]
|
Auch abrufbar als: Unified diff
USE-Einleitungen formatiert templates/webpages/requirement_spec/