blob: 363460ce7411e563fabff4c138e7b0e2cf5930ad [file] [log] [blame]
@*******************************************************************************
* Licensed to the Apache Software Foundation (ASF) under one or more *
* contributor license agreements. See the NOTICE file distributed with *
* this work for additional information regarding copyright ownership. *
* The ASF licenses this file to You under the Apache License, Version 2.0 *
* (the "License"); you may not use this file except in compliance with *
* the License. You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
*******************************************************************************@
@(bugReportForm: play.data.Form[BugReport])
@import helper._
@import helper.twitterBootstrap._
@main("Bug Report") {
@flash_message()
@helper.form(action = routes.BugReportController.newReport) {
<fieldset>
<legend>Bug Report</legend>
@inputText(
bugReportForm("name"),
'_label -> "Your name",
'_error -> bugReportForm.globalError
)
@inputText(
bugReportForm("title"),
'_label -> "Bug Title",
'_error -> bugReportForm.globalError
)
@inputText(
bugReportForm("email"),
'_label -> "Email",
'_helper -> "You must be a registered user to report a bug",
'_error -> bugReportForm.globalError
)
@inputText(
bugReportForm("organization"),
'_label -> "Organization",
'_error -> bugReportForm.globalError
)
@textarea(
bugReportForm("description"),
'_label -> "Description", 'cols -> 65, 'rows -> 7
)
</fieldset>
<div class="actions">
<input type="submit" class="btn primary" value="Submit">
<a href="@routes.ClimateServiceController.home()" class="btn">Cancel</a>
</div>
}
}