Seems like a simple thing, but I'm having a hell of time doing it.
I'm sure it's a quick fix... any help would be appreciated.
Here's the code:
<!-- apps/frontend/modules/job/templates/_form.php -->
<?php use_stylesheets_for_form($form) ?>
<?php use_javascripts_for_form($form) ?>
<?php echo form_tag_for($form, '@job') ?>
<table id="job_form">
<tfoot>
<tr>
<td colspan="2">
<input type="submit" value="Preview your job" />
</td>
</tr>
</tfoot>
<tbody>
<?php echo $form ?>
</tbody>
</table>
</form>
Yes, this is straight from the JObeet tutorial... found here: http://www.symfony-project.org/jobeet/1_4/Propel/en/10
With all the helpers, I thought this may be a symfony issue. Apparently not? At any rate, there is no action attributed to this post input method, so I can't use link_to or url_for helpers.
<input type="submit">
) you want a link (ie<a href=blah blah>
) ? – Manse