nvb
parent
c00b9789a0
commit
e7fe202c86
|
@ -126,7 +126,7 @@ def submit_get(v, sub=None):
|
|||
|
||||
if request.path.startswith('/s/') and not sub: abort(404)
|
||||
|
||||
SUBS = () if SITE_NAME == 'Drama' and not sub else tuple(x[0] for x in g.db.query(Sub.name).order_by(Sub.name).all())
|
||||
SUBS = tuple(x[0] for x in g.db.query(Sub.name).order_by(Sub.name).all())
|
||||
|
||||
return render_template("submit.html", SUBS=SUBS, v=v, sub=sub, ghost=submit_ghost(v,g.db))
|
||||
|
||||
|
@ -854,7 +854,7 @@ def submit_post(v, sub=None):
|
|||
def error(error):
|
||||
if request.headers.get("Authorization") or request.headers.get("xhr"): return {"error": error}, 403
|
||||
|
||||
SUBS = () if SITE_NAME == 'Drama' and not sub else tuple(x[0] for x in g.db.query(Sub.name).order_by(Sub.name).all())
|
||||
SUBS = tuple(x[0] for x in g.db.query(Sub.name).order_by(Sub.name).all())
|
||||
return render_template("submit.html", SUBS=SUBS, v=v, error=error, title=title, url=url, body=body, ghost=submit_ghost(v,g.db)), 400
|
||||
|
||||
|
||||
|
|
|
@ -79,25 +79,23 @@
|
|||
|
||||
<input autocomplete="off" type="hidden" name="formkey" value="{{v.formkey}}">
|
||||
|
||||
{% if SITE_NAME != 'Drama' or sub %}
|
||||
<label class='mt-4' for="title">Sub</label>
|
||||
<label class='mt-4' for="title">Sub</label>
|
||||
|
||||
<div class="input-group mb2">
|
||||
<select autocomplete="off" id='sub' class="form-control" form="submitform" name="sub">
|
||||
{% if SITE_NAME == 'PCM' %}
|
||||
<option value="none" selected>
|
||||
None
|
||||
</option>
|
||||
{% endif %}
|
||||
<div class="input-group mb2">
|
||||
<select autocomplete="off" id='sub' class="form-control" form="submitform" name="sub">
|
||||
{% if SITE_NAME != 'Ruqqus' %}
|
||||
<option value="none" selected>
|
||||
None
|
||||
</option>
|
||||
{% endif %}
|
||||
|
||||
{% for s in SUBS %}
|
||||
<option value="{{s}}" {% if sub and sub.name == s %}selected{% endif %}>
|
||||
/s/{{s}}
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
{% endif %}
|
||||
{% for s in SUBS %}
|
||||
<option value="{{s}}" {% if sub and sub.name == s %}selected{% endif %}>
|
||||
/s/{{s}}
|
||||
</option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<label class='mt-4' for="title">Post Title</label>
|
||||
|
||||
|
|
Loading…
Reference in New Issue